We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10b0d67 commit 10a921eCopy full SHA for 10a921e
apps/files/js/filelist.js
@@ -707,8 +707,10 @@
707
tr.addClass('highlighted');
708
this._currentFileModel = model;
709
710
+ const secondaryActionsOpen = Boolean(tr.find('.actions-secondary-vue').length)
711
+
712
// open sidebar and set file
- if (typeof show === 'undefined' || !!show || (OCA.Files.Sidebar.file !== '')) {
713
+ if (!secondaryActionsOpen && (typeof show === 'undefined' || !!show || (OCA.Files.Sidebar.file !== ''))) {
714
OCA.Files.Sidebar.open(path.replace('//', '/'))
715
}
716
},
0 commit comments