diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-09-28 12:30:12 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-28 12:30:12 +0200 |
commit | 5e4a52d3c259e77065dbb5f0766b0d08f2e1babb (patch) | |
tree | 56bc8507631b84c8796f4961d04b278f528f3bad /apps/files_sharing/js | |
parent | 9a010cc8ce281650038cd1444f63a02245eea523 (diff) | |
download | nextcloud-server-5e4a52d3c259e77065dbb5f0766b0d08f2e1babb.tar.gz nextcloud-server-5e4a52d3c259e77065dbb5f0766b0d08f2e1babb.zip |
Fix tabs order in files sidebar
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r-- | apps/files_sharing/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 5290dfbb7d1..66e4f9dc273 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -111,7 +111,7 @@ } }); - var shareTab = new OCA.Sharing.ShareTabView('shareTabView'); + var shareTab = new OCA.Sharing.ShareTabView('shareTabView', {order: -20}); // detect changes and change the matching list entry shareTab.on('sharesChanged', function(shareModel) { var fileInfoModel = shareModel.fileInfoModel; |