Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_status/src/views/Dashboard.vue')
-rw-r--r--apps/user_status/src/views/Dashboard.vue12
1 files changed, 4 insertions, 8 deletions
diff --git a/apps/user_status/src/views/Dashboard.vue b/apps/user_status/src/views/Dashboard.vue
index bc30b604a67..629a28abeb5 100644
--- a/apps/user_status/src/views/Dashboard.vue
+++ b/apps/user_status/src/views/Dashboard.vue
@@ -20,17 +20,14 @@
-->
<template>
- <DashboardWidget
- id="user-status_panel"
+ <DashboardWidget id="user-status_panel"
:items="items"
:loading="loading">
<template #default="{ item }">
- <DashboardWidgetItem
- :main-text="item.mainText"
+ <DashboardWidgetItem :main-text="item.mainText"
:sub-text="item.subText">
<template #avatar>
- <Avatar
- class="item-avatar"
+ <Avatar class="item-avatar"
:size="44"
:user="item.avatarUsername"
:display-name="item.mainText"
@@ -40,8 +37,7 @@
</DashboardWidgetItem>
</template>
<template #empty-content>
- <EmptyContent
- id="user_status-widget-empty-content"
+ <EmptyContent id="user_status-widget-empty-content"
icon="icon-user-status">
{{ t('user_status', 'No recent status changes') }}
</EmptyContent>