mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
fix(dashboard): remove status list if there are none
- resolves https://github.com/nextcloud/server/issues/59334 If there are no status entries the list must be removed. Its not valid to show an empty list as per accessibility rules: https://www.w3.org/TR/wai-aria-1.2/#mustContain Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
13583e8c6b
commit
29628eba33
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
|||
<template>
|
||||
<main id="app-dashboard">
|
||||
<h2>{{ greeting.text }}</h2>
|
||||
<ul class="statuses">
|
||||
<ul v-if="sortedRegisteredStatus.length > 0" class="statuses">
|
||||
<li
|
||||
v-for="status in sortedRegisteredStatus"
|
||||
:id="'status-' + status"
|
||||
|
|
|
|||
Loading…
Reference in a new issue