Skip to content

Commit

Permalink
Fix resource table row key
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarpsvo committed Sep 13, 2023
1 parent e75cbb9 commit 39e4e9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/js/entry.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/js/components/ResourceTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
v-for="(resource, index) in fakeResources"
@actionExecuted="$emit('actionExecuted')"
:testId="`${resourceName}-items-${index}`"
:key="`${resourceName}-items-${index}`"
:key="`${resourceName}-items-${index}-${resource.id.value}`"
:delete-resource="deleteResource"
:restore-resource="restoreResource"
:resource="resource"
Expand Down

0 comments on commit 39e4e9d

Please sign in to comment.