mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
fix(files): Only render the menu if there are actions to show
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
96348bf75d
commit
e37ca5694b
1 changed files with 2 additions and 2 deletions
|
|
@ -597,8 +597,8 @@
|
|||
Object.values = objectValues;
|
||||
}
|
||||
|
||||
var menuActions = Object.values(this.actions.all).filter(function (action) {
|
||||
return action.type !== OCA.Files.FileActions.TYPE_INLINE;
|
||||
var menuActions = Object.values(actions).filter(function (action) {
|
||||
return action.type !== OCA.Files.FileActions.TYPE_INLINE && (!defaultAction || action.name !== defaultAction.name)
|
||||
});
|
||||
// do not render the menu if nothing is in it
|
||||
if (menuActions.length > 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue