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
This commit is contained in:
Mahdi JafariRaviz
2025-08-04 08:16:18 -04:00
committed by Stefan Benz
parent 5bf797d479
commit 35a0d66a49

View File

@@ -423,6 +423,7 @@ export class AppDetailComponent implements OnInit, OnDestroy {
if (allowed) { if (allowed) {
this.oidcForm.enable(); this.oidcForm.enable();
this.oidcForm.controls['clientId'].disable();
this.oidcTokenForm.enable(); this.oidcTokenForm.enable();
this.apiForm.enable(); this.apiForm.enable();
this.samlForm.enable(); this.samlForm.enable();