diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-10-18 15:47:18 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-10-18 15:54:17 +0200 |
commit | 45804b5bef932ba86ff5a28a40f1a7ebcb7c5290 (patch) | |
tree | f34ec68f71108a93a43781d72fcb12b1901a5d45 /apps/files/js/detailsview.js | |
parent | 302a5d81714c9aca3fa38fad9fe8879fb867c3e8 (diff) | |
download | nextcloud-server-45804b5bef932ba86ff5a28a40f1a7ebcb7c5290.tar.gz nextcloud-server-45804b5bef932ba86ff5a28a40f1a7ebcb7c5290.zip |
Add icon to file sidebar tabs
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files/js/detailsview.js')
-rw-r--r-- | apps/files/js/detailsview.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/detailsview.js b/apps/files/js/detailsview.js index 2a5d589a730..ad5c9993524 100644 --- a/apps/files/js/detailsview.js +++ b/apps/files/js/detailsview.js @@ -122,7 +122,8 @@ templateVars.tabHeaders = _.map(this._tabViews, function(tabView, i) { return { tabId: tabView.id, - label: tabView.getLabel() + label: tabView.getLabel(), + tabIcon: tabView.getIcon() }; }); |