Skip to content

Commit

Permalink
🩹 Fix event list table duplicated keys
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt committed Nov 26, 2022
1 parent 8c40aa0 commit 07a932c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NFTPage/EventList/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<tbody>
<tr
v-for="event in nftHistory"
:key="`${event.txHash}event`"
:key="`${event.txHash}-${event.nftId}-${event.event}`"
class="py-[12px] border-b-shade-gray border-b-[1px] text-dark-gray"
>
<td>
Expand Down

0 comments on commit 07a932c

Please sign in to comment.