diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-07-17 10:31:37 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-07-17 13:41:57 +0200 |
commit | 4b5d7b15ff1c5f3a7a8baeae56acc03fec61e139 (patch) | |
tree | 55e3258ce309a6147b56ed3eff29405a44ef2ffd /apps/updatenotification/src | |
parent | 23785d108d6f1a5641bad2cf91ae3c696aac0ef0 (diff) | |
download | nextcloud-server-4b5d7b15ff1c5f3a7a8baeae56acc03fec61e139.tar.gz nextcloud-server-4b5d7b15ff1c5f3a7a8baeae56acc03fec61e139.zip |
Change what's new popover icon to checkmark, fix #10047
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/updatenotification/src')
-rw-r--r-- | apps/updatenotification/src/components/root.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/src/components/root.vue b/apps/updatenotification/src/components/root.vue index fcc5a9dd831..a599b8da73d 100644 --- a/apps/updatenotification/src/components/root.vue +++ b/apps/updatenotification/src/components/root.vue @@ -227,7 +227,7 @@ } var whatsNew = []; for (var i in this.whatsNewData) { - whatsNew[i] = { icon: 'icon-star-dark', longtext: this.whatsNewData[i] }; + whatsNew[i] = { icon: 'icon-checkmark', longtext: this.whatsNewData[i] }; } if(this.changelogURL) { whatsNew.push({ |