From cf0265a175d7688b19bf4346fb97db1d5430e380 Mon Sep 17 00:00:00 2001 From: David Requeno Date: Tue, 29 Jul 2025 23:19:39 -0600 Subject: [PATCH] Restoring access-table --- .../accounts-table.component.html | 2 +- .../accounts-table.component.stories.ts | 24 +++++++++++++++---- .../accounts-table.component.ts | 2 +- 3 files changed, 22 insertions(+), 6 deletions(-) diff --git a/libs/ui/src/lib/accounts-table/accounts-table.component.html b/libs/ui/src/lib/accounts-table/accounts-table.component.html index 609c76ee1..8a7bc98a9 100644 --- a/libs/ui/src/lib/accounts-table/accounts-table.component.html +++ b/libs/ui/src/lib/accounts-table/accounts-table.component.html @@ -353,4 +353,4 @@ width: '100%' }" /> -} +} \ No newline at end of file diff --git a/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts b/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts index c8ff855b5..0576ad4d5 100644 --- a/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts +++ b/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts @@ -28,7 +28,11 @@ const mockAccounts = [ platform: { name: 'Bank of America', url: 'https://www.bankofamerica.com' - } + }, + createdAt: new Date(), + updatedAt: new Date(), + platformId: 'bofa', + userId: 'user1' }, { id: '2', @@ -44,7 +48,11 @@ const mockAccounts = [ platform: { name: 'Interactive Brokers', url: 'https://www.interactivebrokers.com' - } + }, + createdAt: new Date(), + updatedAt: new Date(), + platformId: 'ibkr', + userId: 'user1' }, { id: '3', @@ -60,7 +68,11 @@ const mockAccounts = [ platform: { name: 'Deutsche Bank', url: 'https://www.deutsche-bank.de' - } + }, + createdAt: new Date(), + updatedAt: new Date(), + platformId: 'db', + userId: 'user1' }, { id: '4', @@ -76,7 +88,11 @@ const mockAccounts = [ platform: { name: 'Local Credit Union', url: null - } + }, + createdAt: new Date(), + updatedAt: new Date(), + platformId: 'lcu', + userId: 'user1' } ]; diff --git a/libs/ui/src/lib/accounts-table/accounts-table.component.ts b/libs/ui/src/lib/accounts-table/accounts-table.component.ts index a7ce6e488..798750aea 100644 --- a/libs/ui/src/lib/accounts-table/accounts-table.component.ts +++ b/libs/ui/src/lib/accounts-table/accounts-table.component.ts @@ -175,4 +175,4 @@ export class GfAccountsTableComponent implements OnChanges, OnDestroy { this.unsubscribeSubject.next(); this.unsubscribeSubject.complete(); } -} +} \ No newline at end of file