Skip to content

Commit

Permalink
Duplicate Keys Error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
TiagoKocevar committed Nov 20, 2023
1 parent 467c502 commit ff66590
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/abfragen/StatusleisteComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<template v-for="(statusLabel, index) in statusLabels.slice(1)">
<v-divider :key="index"></v-divider>
<v-stepper-step
:key="index"
:key="`${index}-${statusLabel}`"
:complete="getStatusIndex() > index"
step=""
>
Expand Down Expand Up @@ -47,7 +47,7 @@
<template v-for="(shortenedStatusLabel, index) in shortenedStatusLabels.slice(1)">
<v-divider :key="index"></v-divider>
<v-stepper-step
:key="index"
:key="`${index}-${shortenedStatusLabel}`"
:complete="getShortenedStatusIndex() > index"
step=""
>
Expand Down

0 comments on commit ff66590

Please sign in to comment.