From 97e4afff77f5c5f47a9c3de3c3d4b5facf11f1d6 Mon Sep 17 00:00:00 2001 From: Jack Wong <108699279+bergomi02@users.noreply.github.com> Date: Mon, 17 Jun 2024 16:25:20 -0700 Subject: [PATCH] fix pr issue --- .../admin-users-table/admin-users-table.component.html | 2 +- .../components/admin-users-table/admin-users-table.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/prime-angular-frontend/src/app/modules/adjudication/shared/components/admin-users-table/admin-users-table.component.html b/prime-angular-frontend/src/app/modules/adjudication/shared/components/admin-users-table/admin-users-table.component.html index c6b4effa00..f8ee08467a 100644 --- a/prime-angular-frontend/src/app/modules/adjudication/shared/components/admin-users-table/admin-users-table.component.html +++ b/prime-angular-frontend/src/app/modules/adjudication/shared/components/admin-users-table/admin-users-table.component.html @@ -51,7 +51,7 @@ {{ row.status === 1 ? 'Enabled' : 'Disabled' }} diff --git a/prime-angular-frontend/src/app/modules/adjudication/shared/components/admin-users-table/admin-users-table.component.ts b/prime-angular-frontend/src/app/modules/adjudication/shared/components/admin-users-table/admin-users-table.component.ts index d7ddac2731..c9c11b19b5 100644 --- a/prime-angular-frontend/src/app/modules/adjudication/shared/components/admin-users-table/admin-users-table.component.ts +++ b/prime-angular-frontend/src/app/modules/adjudication/shared/components/admin-users-table/admin-users-table.component.ts @@ -18,7 +18,7 @@ export class AdminUsersTableComponent implements OnInit { ) { } - public ToggoleStatus(adminId: number, change: MatSlideToggleChange) { + public toggoleStatus(adminId: number, change: MatSlideToggleChange) { if (change.checked) { this.adjudicationResource.enableAdmin(adminId).subscribe((admin: Admin) => { this.dataSource.find(admin => admin.id === adminId).status = admin.status;