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' }, ] : []), ]