Skip to content

Commit

Permalink
fixup! feat(files): support nested actions
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
skjnldsv committed Nov 3, 2023
1 parent 66a960b commit b08c973
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/files/src/components/FileEntry/FileEntryActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<!-- Back to top-level button -->
<NcActionButton class="files-list__row-action-back" @click="openedSubmenu = ''">
<template #icon>
<ChevronLeftIcon />
<ArrowLeftIcon />
</template>
{{ t('files', 'Back') }}
</NcActionButton>
Expand Down Expand Up @@ -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'
Expand All @@ -117,7 +117,7 @@ export default Vue.extend({
name: 'FileEntryActions',
components: {
ChevronLeftIcon,
ArrowLeftIcon,
ChevronRightIcon,
CustomElementRender,
NcActionButton,
Expand Down

0 comments on commit b08c973

Please sign in to comment.