diff options
author | Simon L <szaimen@e.mail.de> | 2023-11-07 12:07:16 +0100 |
---|---|---|
committer | Simon L <szaimen@e.mail.de> | 2023-11-07 12:07:16 +0100 |
commit | 402ef78df7e334dcd52b2c281cd45918bf3ce6e3 (patch) | |
tree | 9d8965f359951ba5cf3b003ce5c30b9215bc20f7 /apps | |
parent | 9ea30dcab612b8b1d035525ab4ae3b1990d0022e (diff) | |
download | nextcloud-server-402ef78df7e334dcd52b2c281cd45918bf3ce6e3.tar.gz nextcloud-server-402ef78df7e334dcd52b2c281cd45918bf3ce6e3.zip |
Revert "display inline title always"
This reverts commit 9ea30dcab612b8b1d035525ab4ae3b1990d0022e.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/src/components/FileEntry/FileEntryActions.vue | 2 |
1 files changed, 1 insertions, 1 deletions
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) |