3
0

Change automation tab item list :key to index

This commit is contained in:
Jože Fortun 2023-10-17 11:07:50 +02:00
parent 532e1ac46b
commit 28d4d0d1b1

View File

@ -63,6 +63,7 @@
/>
</b-col>
</b-row>
<b-row class="mt-4">
<b-col cols="12">
<b-card
@ -76,8 +77,8 @@
/>
<b-list-group
v-for="(b) in filtered"
:key="b.script || `${b.workflowID}-${b.stepID}`"
v-for="(b, index) in filtered"
:key="index"
class="mb-2 cursor-pointer"
no-gutters
@click.prevent="appendButton(b)"