1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

moved more apis to runtime.background

This commit is contained in:
Kyle Spearrin
2017-12-07 15:36:24 -05:00
parent 8f1757401e
commit 6f2163ef4c
4 changed files with 220 additions and 222 deletions

View File

@@ -265,7 +265,7 @@ export default class AutofillService {
const matchingIndex = this.findMatchingFieldIndex(field, fieldNames);
if (matchingIndex > -1) {
let val = fields[matchingIndex].value;
if (val == null && fields[matchingIndex].type == FieldType.Boolean) {
if (val == null && fields[matchingIndex].type === FieldType.Boolean) {
val = 'false';
}