1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

Prevent the lock component from removing the biometric error message (#2087)

This commit is contained in:
Oscar Hinton
2021-09-28 16:37:18 +02:00
committed by GitHub
parent ed0cc1ced1
commit b0bc00a2c0
2 changed files with 9 additions and 4 deletions

2
jslib

Submodule jslib updated: 2c892eb3a2...91b73fa777

View File

@@ -51,7 +51,7 @@ export class LockComponent extends BaseLockComponent {
}, 100);
}
async unlockBiometric() {
async unlockBiometric(): Promise<boolean> {
if (!this.biometricLock) {
return;
}
@@ -68,8 +68,13 @@ export class LockComponent extends BaseLockComponent {
showConfirmButton: false,
});
await super.unlockBiometric();
const success = await super.unlockBiometric();
Swal.close();
// Avoid closing the error dialogs
if (success) {
Swal.close();
}
return success;
}
}