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