Skip to content

Commit

Permalink
🩹 Fix event list table duplicated keys (#808)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt committed Nov 28, 2022
1 parent 54cab5b commit 3e39515
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.classId, event.nftId, event.event].join('-')"
class="py-[12px] border-b-shade-gray border-b-[1px] text-dark-gray"
>
<td>
Expand Down

0 comments on commit 3e39515

Please sign in to comment.