From 8cc21f50c1019e2367b60e6424665c8dab71f14f Mon Sep 17 00:00:00 2001 From: "Grigorii K. Shartsev" Date: Wed, 4 Oct 2023 19:07:57 +0200 Subject: fix(files): migrate from CustomSvgIconrenderer to NcIconSvgWrapper Signed-off-by: Grigorii K. Shartsev --- apps/files/src/components/FilesListHeaderActions.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/files/src/components/FilesListHeaderActions.vue') diff --git a/apps/files/src/components/FilesListHeaderActions.vue b/apps/files/src/components/FilesListHeaderActions.vue index dfe892af772..4d6dcdd0399 100644 --- a/apps/files/src/components/FilesListHeaderActions.vue +++ b/apps/files/src/components/FilesListHeaderActions.vue @@ -33,7 +33,7 @@ @click="onActionClick(action)"> {{ action.displayName(nodes, currentView) }} @@ -46,6 +46,7 @@ import { showError, showSuccess } from '@nextcloud/dialogs' import { translate } from '@nextcloud/l10n' import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton.js' import NcActions from '@nextcloud/vue/dist/Components/NcActions.js' +import NcIconSvgWrapper from '@nextcloud/vue/dist/Components/NcIconSvgWrapper.js' import NcLoadingIcon from '@nextcloud/vue/dist/Components/NcLoadingIcon.js' import Vue from 'vue' @@ -53,7 +54,6 @@ import { getFileActions, useActionsMenuStore } from '../store/actionsmenu.ts' import { useFilesStore } from '../store/files.ts' import { useSelectionStore } from '../store/selection.ts' import filesListWidthMixin from '../mixins/filesListWidth.ts' -import CustomSvgIconRender from './CustomSvgIconRender.vue' import logger from '../logger.js' import { NodeStatus } from '@nextcloud/files' @@ -64,9 +64,9 @@ export default Vue.extend({ name: 'FilesListHeaderActions', components: { - CustomSvgIconRender, NcActions, NcActionButton, + NcIconSvgWrapper, NcLoadingIcon, }, -- cgit v1.2.3