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 0bbca7fde2
commit 9dde6247d7

View File

@@ -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();