Skip to content

Commit 053f725

Browse files
authored
Merge pull request #59427 from nextcloud/fix/dashboard-list
fix(dashboard): remove status list if there are none
2 parents 0b5ce4e + 9d70509 commit 053f725

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/dashboard/src/DashboardApp.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<template>
66
<main id="app-dashboard">
77
<h2>{{ greeting.text }}</h2>
8-
<ul class="statuses">
8+
<ul v-if="sortedRegisteredStatus.length > 0" class="statuses">
99
<li
1010
v-for="status in sortedRegisteredStatus"
1111
:id="'status-' + status"

dist/dashboard-main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dashboard-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)