diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-07-10 10:02:44 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-07-15 09:28:12 +0200 |
commit | e6fb1b9878c2981c5bf5526a4d4e83aae77f436d (patch) | |
tree | 3f217c16dabd87700967f8928b7a1c5ebfd6711e /apps | |
parent | 31a14945296047cbdd17a90c223527f4e1ad951b (diff) | |
download | nextcloud-server-e6fb1b9878c2981c5bf5526a4d4e83aae77f436d.tar.gz nextcloud-server-e6fb1b9878c2981c5bf5526a4d4e83aae77f436d.zip |
Load more than one panel
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dashboard/src/App.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index af38e4c7b2d..e7dc09e773c 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -56,7 +56,7 @@ export default { for (const app in this.callbacks) { const element = this.$refs[app] if (this.panels[app].mounted) { - return + continue } if (element) { @@ -97,7 +97,7 @@ export default { display: flex; justify-content: center; flex-direction: row; - align-items: center; + align-items: flex-start; flex-wrap: wrap; } |