mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #37460 from nextcloud/backport/37449/stable25
[stable25] Fix/36917 the statuses list was implemented semantically incorrectly
This commit is contained in:
commit
d9c768e219
3 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
4
dist/dashboard-main.js
vendored
4
dist/dashboard-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/dashboard-main.js.map
vendored
2
dist/dashboard-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue