aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/transaction-list.js')
-rw-r--r--ui/app/components/transaction-list.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/transaction-list.js b/ui/app/components/transaction-list.js
index 115fd91f8..c5a86f082 100644
--- a/ui/app/components/transaction-list.js
+++ b/ui/app/components/transaction-list.js
@@ -16,7 +16,9 @@ module.exports = function(transactions, network) {
h('div.font-small', {style: {display: 'inline'}}, 'Transactions'),
transactions.map((transaction) => {
- return h('.tx.flex-row.flex-space-around', [
+ return h('.tx.flex-row.flex-space-around', {
+ key: `listed-tx-${transaction.hash}`,
+ }, [
h('a.font-small',
{
href: explorerLink(transaction.hash, parseInt(network)),