diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-10-19 16:53:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-19 16:53:56 +0200 |
commit | 97717ae3a72d160cdbb9658f577db8f3d8f22f81 (patch) | |
tree | 06e32c3df997af8d0ed43b7810c17c064adb9cc0 /apps/files/js/detailsview.js | |
parent | 851f52588999421f7a1119451ddcf90637eb82b4 (diff) | |
parent | 45804b5bef932ba86ff5a28a40f1a7ebcb7c5290 (diff) | |
download | nextcloud-server-97717ae3a72d160cdbb9658f577db8f3d8f22f81.tar.gz nextcloud-server-97717ae3a72d160cdbb9658f577db8f3d8f22f81.zip |
Merge pull request #11905 from nextcloud/design/noid/tab-icons
Add icon to file sidebar tabs
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 675e380b52b..cd602961c0a 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() }; }); |