From: skjnldsv Date: Thu, 14 Mar 2024 07:56:52 +0000 (+0100) Subject: fix(files): breadcrumbs dnd X-Git-Tag: v29.0.0rc2~2^2~6 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8503e2d4bc56aed86849691a23d6abbbefc28e1c;p=nextcloud-server.git fix(files): breadcrumbs dnd Signed-off-by: skjnldsv --- diff --git a/apps/files/src/components/BreadCrumbs.vue b/apps/files/src/components/BreadCrumbs.vue index d76ed714f20..5f72aac11af 100644 --- a/apps/files/src/components/BreadCrumbs.vue +++ b/apps/files/src/components/BreadCrumbs.vue @@ -34,7 +34,9 @@ :force-icon-text="true" :title="titleForSection(index, section)" :aria-description="ariaForSection(section)" - @click.native="onClick(section.to)"> + @click.native="onClick(section.to)" + @dragover.native="onDragOver($event, section.dir)" + @dropped="onDrop($event, section.dir)">