mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-12-20 11:51:17 +00:00
[editor] Fix badge key-repetition for duplicated actions
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
d92a451ebc
commit
e80ed0dbf3
1 changed files with 2 additions and 2 deletions
|
@ -90,8 +90,8 @@
|
|||
Disabled
|
||||
</b-badge>
|
||||
<b-badge
|
||||
v-for="badge in formatRuleActions(data.item)"
|
||||
:key="badge"
|
||||
v-for="(badge, idx) in formatRuleActions(data.item)"
|
||||
:key="`${badge}-${idx}`"
|
||||
class="mt-1 mr-1"
|
||||
>
|
||||
{{ badge }}
|
||||
|
|
Loading…
Reference in a new issue