pull/951/merge
thibaut1304 2025-07-22 12:50:44 -07:00 committed by GitHub
commit 094f22f42d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -86,8 +86,8 @@
{{ group.name }}
</h2>
<Service
v-for="(item, index) in group.items"
:key="`service-${groupIndex}-${index}`"
v-for="(item) in group.items"
:key="`${currentPage}-${group.name}-${item.name}`"
:item="item"
:proxy="config.proxy"
:class="[
@ -119,8 +119,8 @@
{{ group.name }}
</h2>
<Service
v-for="(item, index) in group.items"
:key="index"
v-for="(item) in group.items"
:key="`${currentPage}-${group.name}-${item.name}`"
:item="item"
:proxy="config.proxy"
:class="item.class || group.class"