From 5004536beed30f058cb72d1420cf44e6789017ef Mon Sep 17 00:00:00 2001 From: Daniel Palafox Date: Wed, 1 Jul 2026 13:22:02 -0400 Subject: [PATCH] fix: disable member name input text --- ui-2/src/app/member/member-update.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui-2/src/app/member/member-update.component.ts b/ui-2/src/app/member/member-update.component.ts index 0f426d8cb..e8da295fb 100644 --- a/ui-2/src/app/member/member-update.component.ts +++ b/ui-2/src/app/member/member-update.component.ts @@ -117,6 +117,7 @@ export class MemberUpdateComponent implements OnInit { if (sfId) { this.editForm.get('salesforceId')?.disable() + this.editForm.get('clientName')?.disable() } }