Display the list of accounts

This commit is contained in:
2025-04-14 21:12:24 +02:00
parent 91d8b1a579
commit 342af2c443
2 changed files with 34 additions and 1 deletions

View File

@ -17,6 +17,13 @@ export class AccountsList {
this.list.sort((a, b) => a.id - b.id);
}
/**
* Check if accounts list is empty
*/
get isEmpty(): boolean {
return this.list.length === 0;
}
/**
* Get a single account by its id
*/