From cd8cf96e26f695728924a8f9a53b9ff699e3e03b Mon Sep 17 00:00:00 2001 From: lukaw3d Date: Tue, 17 Sep 2024 21:08:01 +0200 Subject: [PATCH] Swap Fee and Value labels in columns in list of transactions This was a bug since 41abca9af16452103c66ac07d0d9b07c541e1e0a. --- .changelog/1548.bugfix.md | 1 + src/app/components/Transactions/RuntimeTransactions.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .changelog/1548.bugfix.md diff --git a/.changelog/1548.bugfix.md b/.changelog/1548.bugfix.md new file mode 100644 index 000000000..1c67ab762 --- /dev/null +++ b/.changelog/1548.bugfix.md @@ -0,0 +1 @@ +Swap Fee and Value labels in columns in list of transactions diff --git a/src/app/components/Transactions/RuntimeTransactions.tsx b/src/app/components/Transactions/RuntimeTransactions.tsx index dec350ef6..97fbf5535 100644 --- a/src/app/components/Transactions/RuntimeTransactions.tsx +++ b/src/app/components/Transactions/RuntimeTransactions.tsx @@ -63,8 +63,8 @@ export const RuntimeTransactions: FC = ({ { key: 'type', content: t('common.type') }, { key: 'from', content: t('common.from'), width: '150px' }, { key: 'to', content: t('common.to'), width: '150px' }, - { key: 'value', align: TableCellAlign.Right, content: t('common.amount'), width: '250px' }, { key: 'txnFee', content: t('common.fee'), align: TableCellAlign.Right, width: '250px' }, + { key: 'value', align: TableCellAlign.Right, content: t('common.amount'), width: '250px' }, ] : []), ]