mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
Fix autoFillOnPageLoadDefault default value (#697)
This commit is contained in:
@@ -231,7 +231,7 @@ export class StateService<
|
|||||||
async getAutoFillOnPageLoadDefault(options?: StorageOptions): Promise<boolean> {
|
async getAutoFillOnPageLoadDefault(options?: StorageOptions): Promise<boolean> {
|
||||||
return (
|
return (
|
||||||
(await this.getAccount(this.reconcileOptions(options, await this.defaultOnDiskOptions())))
|
(await this.getAccount(this.reconcileOptions(options, await this.defaultOnDiskOptions())))
|
||||||
?.settings?.autoFillOnPageLoadDefault ?? false
|
?.settings?.autoFillOnPageLoadDefault ?? true
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user