From 35a0d66a498737e0d65c6244d4833122dc316b77 Mon Sep 17 00:00:00 2001 From: Mahdi JafariRaviz <56910785+mahdi-jfri@users.noreply.github.com> Date: Mon, 4 Aug 2025 08:16:18 -0400 Subject: [PATCH] fix: disable client id in oidc configuration (#10177) # Which Problems Are Solved This pr disables the client id in oidc configuration in console, as mentioned in #10149. # How the Problems Are Solved I re-disabled the field from inside the form. # Additional Context - Closes #10149. - Closes #8530 --- .../app/pages/projects/apps/app-detail/app-detail.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/console/src/app/pages/projects/apps/app-detail/app-detail.component.ts b/console/src/app/pages/projects/apps/app-detail/app-detail.component.ts index 4b11f0171c..236a83b706 100644 --- a/console/src/app/pages/projects/apps/app-detail/app-detail.component.ts +++ b/console/src/app/pages/projects/apps/app-detail/app-detail.component.ts @@ -423,6 +423,7 @@ export class AppDetailComponent implements OnInit, OnDestroy { if (allowed) { this.oidcForm.enable(); + this.oidcForm.controls['clientId'].disable(); this.oidcTokenForm.enable(); this.apiForm.enable(); this.samlForm.enable();