diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-07-22 13:21:25 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-07-22 13:21:25 +0200 |
commit | 7ca81f360f42341b2941798374160d362507ba26 (patch) | |
tree | a3d4701504898e6c864980b989b78fc88ed92fbd /apps/user_status/src | |
parent | 49b490ce6d1d726aa1c335b0b5c440d8a3cae5ff (diff) | |
download | nextcloud-server-7ca81f360f42341b2941798374160d362507ba26.tar.gz nextcloud-server-7ca81f360f42341b2941798374160d362507ba26.zip |
Fix eslint and update bundles
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/user_status/src')
-rw-r--r-- | apps/user_status/src/views/Dashboard.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_status/src/views/Dashboard.vue b/apps/user_status/src/views/Dashboard.vue index bd360b19de4..bc30b604a67 100644 --- a/apps/user_status/src/views/Dashboard.vue +++ b/apps/user_status/src/views/Dashboard.vue @@ -24,11 +24,11 @@ id="user-status_panel" :items="items" :loading="loading"> - <template v-slot:default="{ item }"> + <template #default="{ item }"> <DashboardWidgetItem :main-text="item.mainText" :sub-text="item.subText"> - <template v-slot:avatar> + <template #avatar> <Avatar class="item-avatar" :size="44" @@ -39,7 +39,7 @@ </template> </DashboardWidgetItem> </template> - <template v-slot:empty-content> + <template #empty-content> <EmptyContent id="user_status-widget-empty-content" icon="icon-user-status"> |