mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-19 23:02:19 +00:00
fix: is default (#1737)
This commit is contained in:
@@ -96,7 +96,7 @@ export class LoginPolicyComponent implements OnDestroy {
|
|||||||
if (resp.policy) {
|
if (resp.policy) {
|
||||||
this.loginData = resp.policy;
|
this.loginData = resp.policy;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.disabled = ((this.loginData as LoginPolicy.AsObject)?.isDefault) ?? false;
|
this.disabled = this.isDefault ?? false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.getIdps().then(resp => {
|
this.getIdps().then(resp => {
|
||||||
|
Reference in New Issue
Block a user