Skip to content

Commit e322c63

Browse files
authored
Merge pull request #59492 from nextcloud/backport/59427/stable33
[stable33] fix(dashboard): remove status list if there are none
2 parents 254b6a7 + e8a16ba commit e322c63

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)