Skip to content

Commit 25ff7c9

Browse files
Merge pull request #37449 from nextcloud/fix/36917-The_statuses_list_was_implemented_semantically_incorrectly
Fix/36917 the statuses list was implemented semantically incorrectly
2 parents 779d8a0 + 863a8b7 commit 25ff7c9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

apps/dashboard/src/DashboardApp.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<div id="app-dashboard">
33
<h2>{{ greeting.text }}</h2>
44
<ul class="statuses">
5-
<div v-for="status in sortedRegisteredStatus"
5+
<li v-for="status in sortedRegisteredStatus"
66
:id="'status-' + status"
77
:key="status">
88
<div :ref="'status-' + status" />
9-
</div>
9+
</li>
1010
</ul>
1111

1212
<Draggable v-model="layout"
@@ -627,7 +627,7 @@ export default {
627627
flex-wrap: wrap;
628628
margin-bottom: 36px;
629629
630-
& > div {
630+
& > li {
631631
margin: 8px;
632632
}
633633
}

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)