mirror of https://github.com/Lissy93/dashy.git
Fix ID clash
This commit is contained in:
parent
fe8930f1b3
commit
3b47a88dff
|
@ -6,8 +6,8 @@
|
|||
<div v-else class="there-are-items">
|
||||
<Item
|
||||
v-for="item in items"
|
||||
:key="item.id"
|
||||
:id="item.id"
|
||||
:key="`${groupId}-${item.id}`"
|
||||
:id="`${groupId}-${item.id}`"
|
||||
:title="item.title"
|
||||
:description="item.description"
|
||||
:icon="item.icon"
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "0",
|
||||
"id": "1",
|
||||
"name": "Server Management | Hosted",
|
||||
"items": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue