mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
display inline title always
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
71f1e419e2
commit
9ea30dcab6
1 changed files with 1 additions and 1 deletions
|
|
@ -191,7 +191,7 @@ export default Vue.extend({
|
|||
|
||||
methods: {
|
||||
actionDisplayName(action: FileAction) {
|
||||
if (this.filesListWidth < 768 && action.inline && typeof action.title === 'function') {
|
||||
if ((this.gridMode || (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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue