summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/js-src/components/root.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/updatenotification/js-src/components/root.vue')
-rw-r--r--apps/updatenotification/js-src/components/root.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/updatenotification/js-src/components/root.vue b/apps/updatenotification/js-src/components/root.vue
index f123e3283df..23a132ec0b0 100644
--- a/apps/updatenotification/js-src/components/root.vue
+++ b/apps/updatenotification/js-src/components/root.vue
@@ -4,6 +4,7 @@
<template v-if="isNewVersionAvailable">
<p>
<span v-html="newVersionAvailableString"></span><br>
+ <span v-if="!isListFetched" class="icon icon-loading-small"></span>
<span v-html="statusText"></span>
</p>
@@ -149,7 +150,7 @@
statusText: function() {
if (!this.isListFetched) {
- return '';
+ return t('updatenotification', 'Checking apps for compatible updates');
}
if (this.appstoreDisabled) {