From b08c973576a8d519ff6d6e4d298d957d7a111118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Fri, 20 Oct 2023 12:49:08 +0200 Subject: [PATCH] fixup! feat(files): support nested actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- apps/files/src/components/FileEntry/FileEntryActions.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/src/components/FileEntry/FileEntryActions.vue b/apps/files/src/components/FileEntry/FileEntryActions.vue index 3997cfc58b2ae..d4002558d39fe 100644 --- a/apps/files/src/components/FileEntry/FileEntryActions.vue +++ b/apps/files/src/components/FileEntry/FileEntryActions.vue @@ -67,7 +67,7 @@ {{ t('files', 'Back') }} @@ -99,7 +99,7 @@ import { showError, showSuccess } from '@nextcloud/dialogs' import { translate as t } from '@nextcloud/l10n'; import Vue, { PropType } from 'vue' -import ChevronLeftIcon from 'vue-material-design-icons/ChevronLeft.vue' +import ArrowLeftIcon from 'vue-material-design-icons/ArrowLeft.vue' import ChevronRightIcon from 'vue-material-design-icons/ChevronRight.vue' import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton.js' import NcActions from '@nextcloud/vue/dist/Components/NcActions.js' @@ -117,7 +117,7 @@ export default Vue.extend({ name: 'FileEntryActions', components: { - ChevronLeftIcon, + ArrowLeftIcon, ChevronRightIcon, CustomElementRender, NcActionButton,