Skip to content

Commit

Permalink
Merge pull request #1547 from oasisprotocol/lw/fix-value-fee-cols
Browse files Browse the repository at this point in the history
Swap Fee and Value columns in list of transactions
  • Loading branch information
lukaw3d authored Sep 17, 2024
2 parents ec2080f + cd8cf96 commit da6e1bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .changelog/1548.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Swap Fee and Value labels in columns in list of transactions
2 changes: 1 addition & 1 deletion src/app/components/Transactions/RuntimeTransactions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export const RuntimeTransactions: FC<TransactionsProps> = ({
{ 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' },
]
: []),
]
Expand Down

0 comments on commit da6e1bd

Please sign in to comment.