Skip to content

Commit

Permalink
Merge pull request #37449 from nextcloud/fix/36917-The_statuses_list_…
Browse files Browse the repository at this point in the history
…was_implemented_semantically_incorrectly

Fix/36917 the statuses list was implemented semantically incorrectly
  • Loading branch information
JuliaKirschenheuter authored Mar 29, 2023
2 parents 779d8a0 + 863a8b7 commit 25ff7c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions apps/dashboard/src/DashboardApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<div id="app-dashboard">
<h2>{{ greeting.text }}</h2>
<ul class="statuses">
<div v-for="status in sortedRegisteredStatus"
<li v-for="status in sortedRegisteredStatus"
:id="'status-' + status"
:key="status">
<div :ref="'status-' + status" />
</div>
</li>
</ul>

<Draggable v-model="layout"
Expand Down Expand Up @@ -627,7 +627,7 @@ export default {
flex-wrap: wrap;
margin-bottom: 36px;
& > div {
& > li {
margin: 8px;
}
}
Expand Down
4 changes: 2 additions & 2 deletions dist/dashboard-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dashboard-main.js.map

Large diffs are not rendered by default.

0 comments on commit 25ff7c9

Please sign in to comment.