diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-08-18 11:10:00 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-08-23 14:03:51 +0200 |
commit | 2c9acd5d5d9b99a586ab35d86780cdaf0e94df5e (patch) | |
tree | 9e0f53bc7aead84b3313287294cd3bd593bf809d /apps/files/src/components/FileEntry.vue | |
parent | b4e71ad0fb282fbc9981924b9783ae6659a9e4fe (diff) | |
download | nextcloud-server-2c9acd5d5d9b99a586ab35d86780cdaf0e94df5e.tar.gz nextcloud-server-2c9acd5d5d9b99a586ab35d86780cdaf0e94df5e.zip |
feat: migrate FileAction from server
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/src/components/FileEntry.vue')
-rw-r--r-- | apps/files/src/components/FileEntry.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/src/components/FileEntry.vue b/apps/files/src/components/FileEntry.vue index 9384a4bf5e6..9471e596f1d 100644 --- a/apps/files/src/components/FileEntry.vue +++ b/apps/files/src/components/FileEntry.vue @@ -170,8 +170,8 @@ import { CancelablePromise } from 'cancelable-promise' import { debounce } from 'debounce' import { emit } from '@nextcloud/event-bus' import { extname } from 'path' -import { formatFileSize, FileType, Permission } from '@nextcloud/files' import { generateUrl } from '@nextcloud/router' +import { getFileActions, DefaultType, FileType, formatFileSize, Permission } from '@nextcloud/files' import { showError, showSuccess } from '@nextcloud/dialogs' import { translate } from '@nextcloud/l10n' import { vOnClickOutside } from '@vueuse/components' @@ -187,7 +187,6 @@ import NcTextField from '@nextcloud/vue/dist/Components/NcTextField.js' import Vue from 'vue' import { ACTION_DETAILS } from '../actions/sidebarAction.ts' -import { getFileActions, DefaultType } from '../services/FileAction.ts' import { hashCode } from '../utils/hashUtils.ts' import { isCachedPreview } from '../services/PreviewService.ts' import { useActionsMenuStore } from '../store/actionsmenu.ts' |