diff options
author | szaimen <szaimen@e.mail.de> | 2022-02-09 15:32:06 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-02-10 20:26:55 +0000 |
commit | d460c3702470a6055e6175ffbeb99572353cf61a (patch) | |
tree | 46f2eda692bb38f461ef348a93a28cbfc3e15022 /apps/settings/src | |
parent | 47e03cb61df9bd9499d96aed6c01613e863740a4 (diff) | |
download | nextcloud-server-d460c3702470a6055e6175ffbeb99572353cf61a.tar.gz nextcloud-server-d460c3702470a6055e6175ffbeb99572353cf61a.zip |
try to fix overlapping buttons in apps-management
Signed-off-by: szaimen <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/settings/src')
-rw-r--r-- | apps/settings/src/components/AppList.vue | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue index 5aa68c29bc6..6f82d0c52e1 100644 --- a/apps/settings/src/components/AppList.vue +++ b/apps/settings/src/components/AppList.vue @@ -33,6 +33,9 @@ {{ t('settings', 'Update all') }} </button> </div> + <div v-if="!showUpdateAll" class="counter"> + {{ t('settings', 'All apps are up-to-date.') }} + </div> <transition-group name="app-list" tag="div" class="apps-list-container"> <AppItem v-for="app in apps" :key="app.id" |