diff --git a/.changelog/1554.bugfix.md b/.changelog/1554.bugfix.md new file mode 100644 index 000000000..a3b83c88a --- /dev/null +++ b/.changelog/1554.bugfix.md @@ -0,0 +1 @@ +Swap fee and amount columns in txs tables diff --git a/src/app/components/Transactions/RuntimeTransactions.tsx b/src/app/components/Transactions/RuntimeTransactions.tsx index 97fbf5535..7ef26f907 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: 'txnFee', content: t('common.fee'), align: TableCellAlign.Right, width: '250px' }, { key: 'value', align: TableCellAlign.Right, content: t('common.amount'), width: '250px' }, + { key: 'txnFee', content: t('common.fee'), align: TableCellAlign.Right, width: '250px' }, ] : []), ] @@ -146,13 +146,13 @@ export const RuntimeTransactions: FC = ({ }, { align: TableCellAlign.Right, - content: , - key: 'fee_amount', + content: , + key: 'value', }, { align: TableCellAlign.Right, - content: , - key: 'value', + content: , + key: 'fee_amount', }, ] : []),