]> source.dussan.org Git - nextcloud-server.git/commitdiff
refactor(files): Consistently sort imports of FileEntryMixin
authorFerdinand Thiessen <opensource@fthiessen.de>
Thu, 30 May 2024 20:53:16 +0000 (22:53 +0200)
committerAndy Scherzinger <info@andy-scherzinger.de>
Fri, 31 May 2024 09:39:39 +0000 (11:39 +0200)
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
apps/files/src/components/FileEntryMixin.ts

index cb2a6ee2d19e15cc40fbae4e66a2ae052f4c26d4..24f84a1a5c96b03a9dbc75363c33dfaf943947bf 100644 (file)
@@ -5,11 +5,12 @@
 
 import type { PropType } from 'vue'
 
-import { extname } from 'path'
+import { showError } from '@nextcloud/dialogs'
 import { FileType, Permission, Folder, File as NcFile, NodeStatus, Node, View } from '@nextcloud/files'
-import { generateUrl } from '@nextcloud/router'
 import { translate as t } from '@nextcloud/l10n'
+import { generateUrl } from '@nextcloud/router'
 import { vOnClickOutside } from '@vueuse/components'
+import { extname } from 'path'
 import Vue, { defineComponent } from 'vue'
 
 import { action as sidebarAction } from '../actions/sidebarAction.ts'
@@ -17,7 +18,6 @@ import { getDragAndDropPreview } from '../utils/dragUtils.ts'
 import { hashCode } from '../utils/hashUtils.ts'
 import { dataTransferToFileTree, onDropExternalFiles, onDropInternalFiles } from '../services/DropService.ts'
 import logger from '../logger.js'
-import { showError } from '@nextcloud/dialogs'
 
 Vue.directive('onClickOutside', vOnClickOutside)