Merge pull request #37460 from nextcloud/backport/37449/stable25

[stable25] Fix/36917 the statuses list was implemented semantically incorrectly
This commit is contained in:
Julia Kirschenheuter 2023-03-31 08:01:39 +02:00 committed by GitHub
commit d9c768e219
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -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"
@ -626,7 +626,7 @@ export default {
flex-wrap: wrap;
margin-bottom: 36px;
& > div {
& > li {
margin: 8px;
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long