summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-08-24 14:24:17 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2020-08-25 20:30:41 +0200
commitd4502823f4a8716c291af877e35c7350d02ca5e8 (patch)
tree8657ceffbbd207d6793af8b8bb4e99a4d02118d2 /apps
parented5b90b38ac24efca5d16231ca1e8657fb57a0c8 (diff)
downloadnextcloud-server-d4502823f4a8716c291af877e35c7350d02ca5e8.tar.gz
nextcloud-server-d4502823f4a8716c291af877e35c7350d02ca5e8.zip
Add loading indicator until the widget is mounted
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r--apps/dashboard/src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue
index 404f07b8c52..7c4e51d70c7 100644
--- a/apps/dashboard/src/App.vue
+++ b/apps/dashboard/src/App.vue
@@ -19,7 +19,7 @@
{{ panels[panelId].title }}
</h2>
</div>
- <div class="panel--content">
+ <div class="panel--content" :class="{ loading: !panels[panelId].mounted }">
<div :ref="panels[panelId].id" :data-id="panels[panelId].id" />
</div>
</div>