summaryrefslogtreecommitdiffstats
path: root/settings/js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-03-17 19:49:11 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-03-17 19:49:11 +0100
commitf957ca405f073cbc7fd5bc8cd2a50e0ba026e8d9 (patch)
tree605c53c6eb3e4f11aa418022a397ae1a0bba1a38 /settings/js
parentd6ee1798cc5f9a641344f9e81bd3d770c6875e58 (diff)
parent37d7712411137cc3ddc8073475a8e59953e727c4 (diff)
downloadnextcloud-server-f957ca405f073cbc7fd5bc8cd2a50e0ba026e8d9.tar.gz
nextcloud-server-f957ca405f073cbc7fd5bc8cd2a50e0ba026e8d9.zip
Merge pull request #23371 from owncloud/paurisa-Fixed_21588
Rating icons changed to .svg
Diffstat (limited to 'settings/js')
-rw-r--r--settings/js/apps.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js
index e6631762fd4..9322319d4ba 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -3,7 +3,7 @@
Handlebars.registerHelper('score', function() {
if(this.score) {
var score = Math.round( this.score / 10 );
- var imageName = 'rating/s' + score + '.png';
+ var imageName = 'rating/s' + score + '.svg';
return new Handlebars.SafeString('<img src="' + OC.imagePath('core', imageName) + '">');
}