diff options
author | Pytal <24800714+Pytal@users.noreply.github.com> | 2021-07-29 12:39:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 12:39:29 -0700 |
commit | 5fd9ce9e8de61d606cb53eaf24a1c51f2fb2b87a (patch) | |
tree | 9eebe4baa6425d1fea033e11b647e6f57e583d88 /apps/files/js | |
parent | 7a0b374c1885551b4a312e2a97461ba4c9cc43b1 (diff) | |
parent | ff62983edb2f0b09becfcf77373ec96189d194c3 (diff) | |
download | nextcloud-server-5fd9ce9e8de61d606cb53eaf24a1c51f2fb2b87a.tar.gz nextcloud-server-5fd9ce9e8de61d606cb53eaf24a1c51f2fb2b87a.zip |
Merge pull request #28242 from nextcloud/fix/tag-multiselect-action-order
Add missing order attribute to tag multiselect action
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/app.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/app.js b/apps/files/js/app.js index 6971088bb47..5efa20887e6 100644 --- a/apps/files/js/app.js +++ b/apps/files/js/app.js @@ -116,7 +116,8 @@ { name: 'tags', displayName: 'Tags', - iconClass: 'icon-tag' + iconClass: 'icon-tag', + order: 100, }, ], sorting: { |