Skip to content

Commit

Permalink
Change automation tab item list :key to index
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Oct 17, 2023
1 parent 532e1ac commit 28d4d0d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
/>
</b-col>
</b-row>

<b-row class="mt-4">
<b-col cols="12">
<b-card
Expand All @@ -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)"
Expand Down

0 comments on commit 28d4d0d

Please sign in to comment.