add separate screen for amount confirmations #15

Merged
anomalist merged 13 commits from separate-dbs into master 2023-03-28 07:50:57 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit eadcc22e9a - Show all commits

View File

@@ -33,6 +33,7 @@
- 01 Change alerts into a component (to cut down duplicate code)
- 01 Code for "nav" tabs across the bottom is duplicated on each page.
- .2 Add "copied" feedback when they click "copy" on /account
- .5 Fix how icons show on top of bottom bar on ContactAmounts page
- commit screen

View File

@@ -203,7 +203,8 @@ export default class ContactsView extends Vue {
}
const sortedResult: Array<GiveServerRecord> = R.sort(
(a, b) => new Date(a).getTime() - new Date(b).getTime(),
(a, b) =>
new Date(b.issuedAt).getTime() - new Date(a.issuedAt).getTime(),
result
);
this.giveRecords = sortedResult;