1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-22 16:29:09 +01:00

Set loading indicator on automatic sso flow (#10028)

This commit is contained in:
Bernd Schoolmann 2024-07-10 15:57:02 +02:00 committed by GitHub
parent 6d6785297b
commit 3d5c0a9b97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,6 +93,7 @@ export class SsoComponent extends BaseSsoComponent {
if (qParams.identifier != null) { if (qParams.identifier != null) {
// SSO Org Identifier in query params takes precedence over claimed domains // SSO Org Identifier in query params takes precedence over claimed domains
this.identifierFormControl.setValue(qParams.identifier); this.identifierFormControl.setValue(qParams.identifier);
this.loggingIn = true;
await this.submit(); await this.submit();
} else { } else {
// Note: this flow is written for web but both browser and desktop // Note: this flow is written for web but both browser and desktop