diff options
author | Johannes S <johannes@schlichenmaier.info> | 2017-10-31 01:34:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-31 01:34:46 +0100 |
commit | 936486413d22646a71d6e1504df9589b9eeec4e8 (patch) | |
tree | 41572ecf430943cc77357992359af28cda6848a1 /apps/files/js | |
parent | 84cc13f57b795abe1bf1cffbfcaeefed54b8fa2a (diff) | |
parent | c258cb5557507b3966990872669567af073f10f4 (diff) | |
download | nextcloud-server-936486413d22646a71d6e1504df9589b9eeec4e8.tar.gz nextcloud-server-936486413d22646a71d6e1504df9589b9eeec4e8.zip |
Merge branch 'master' into master
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/tagsplugin.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/js/tagsplugin.js b/apps/files/js/tagsplugin.js index 2286477750c..747a7245a56 100644 --- a/apps/files/js/tagsplugin.js +++ b/apps/files/js/tagsplugin.js @@ -103,17 +103,17 @@ return t('files', 'Add to favorites'); }, mime: 'all', - order: -23, + order: -100, permissions: OC.PERMISSION_READ, iconClass: function(fileName, context) { var $file = context.$file; var isFavorite = $file.data('favorite') === true; if (isFavorite) { - return 'icon-starred'; + return 'icon-star-dark'; } - return 'icon-star'; + return 'icon-starred'; }, actionHandler: function(fileName, context) { var $favoriteMarkEl = context.$file.find('.favorite-mark'); |