mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 05:13:29 +00:00
fix(biometrics): [PM-13901] Bugfix for "Ask for biometrics on launch does not auto prompt biometrics" (#12144)
This PR ensures that, on the Chrome browser extension, biometrics gets auto-prompted when the user selects "Ask for biometrics on launch" by resetting the `isInitialLockScreen` to `true` on active account change. Feature flag: `ExtensionRefresh` ON.
This commit is contained in:
@@ -228,6 +228,7 @@ export class LockV2Component implements OnInit, OnDestroy {
|
|||||||
this.unlockOptions = null;
|
this.unlockOptions = null;
|
||||||
this.activeUnlockOption = null;
|
this.activeUnlockOption = null;
|
||||||
this.formGroup = null; // new form group will be created based on new active unlock option
|
this.formGroup = null; // new form group will be created based on new active unlock option
|
||||||
|
this.isInitialLockScreen = true;
|
||||||
|
|
||||||
// Desktop properties:
|
// Desktop properties:
|
||||||
this.biometricAsked = false;
|
this.biometricAsked = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user