From 402ef78df7e334dcd52b2c281cd45918bf3ce6e3 Mon Sep 17 00:00:00 2001 From: Simon L Date: Tue, 7 Nov 2023 12:07:16 +0100 Subject: Revert "display inline title always" This reverts commit 9ea30dcab612b8b1d035525ab4ae3b1990d0022e. --- apps/files/src/components/FileEntry/FileEntryActions.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/files/src') diff --git a/apps/files/src/components/FileEntry/FileEntryActions.vue b/apps/files/src/components/FileEntry/FileEntryActions.vue index 688524962f5..bd4649cdee5 100644 --- a/apps/files/src/components/FileEntry/FileEntryActions.vue +++ b/apps/files/src/components/FileEntry/FileEntryActions.vue @@ -191,7 +191,7 @@ export default Vue.extend({ methods: { actionDisplayName(action: FileAction) { - if ((this.gridMode || (this.filesListWidth < 768 && action.inline)) && typeof action.title === 'function') { + if (this.filesListWidth < 768 && action.inline && typeof action.title === 'function') { // if an inline action is rendered in the menu for // lack of space we use the title first if defined const title = action.title([this.source], this.currentView) -- cgit v1.2.3