Reverse transactions display order
This commit is contained in:
@@ -48,7 +48,7 @@ export function ExistingTransactions({ transactions, loading }: ExistingTransact
|
||||
? <div className="notification is-warning is-light">
|
||||
<strong>Loading...</strong>
|
||||
</div>
|
||||
: transactions.map(renderRow)}
|
||||
: transactions.map(renderRow).toReversed()}
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -66,7 +66,7 @@ export default function TransactionsTable({ transactions, deselected, deselect,
|
||||
|
||||
return (
|
||||
<div className={styles.transactionsTable}>
|
||||
{transactions.map(renderRow)}
|
||||
{transactions.map(renderRow).toReversed()}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -3,7 +3,7 @@
|
||||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||||
"target": "ES2020",
|
||||
"useDefineForClassFields": true,
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"lib": ["ES2023", "ES2020", "DOM", "DOM.Iterable"],
|
||||
"module": "ESNext",
|
||||
"skipLibCheck": true,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user