1
0
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:
Jared Snider 2024-06-14 16:17:54 -04:00 committed by GitHub
parent 1043a582c1
commit 0dd476588d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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") {