mirror of
https://github.com/bitwarden/browser.git
synced 2025-04-02 18:07:00 +02:00
PM-8886 - SsoComponent - fix missing form validation (#9665)
This commit is contained in:
parent
1043a582c1
commit
0dd476588d
@ -141,6 +141,10 @@ export class SsoComponent extends BaseSsoComponent {
|
||||
}
|
||||
|
||||
submit = async () => {
|
||||
if (this.formGroup.invalid) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.identifier = this.identifierFormControl.value;
|
||||
await this.ssoLoginService.setOrganizationSsoIdentifier(this.identifier);
|
||||
if (this.clientId === "browser") {
|
||||
|
Loading…
Reference in New Issue
Block a user