mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
parens not needed
This commit is contained in:
@@ -169,7 +169,7 @@ export class OnePassword1PifImporter extends BaseImporter implements Importer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const fieldType = (field.k === 'concealed') ? FieldType.Hidden : FieldType.Text;
|
const fieldType = field.k === 'concealed' ? FieldType.Hidden : FieldType.Text;
|
||||||
const fieldName = this.isNullOrWhitespace(field[nameKey]) ? 'no_name' : field[nameKey];
|
const fieldName = this.isNullOrWhitespace(field[nameKey]) ? 'no_name' : field[nameKey];
|
||||||
this.processKvp(cipher, fieldName, fieldValue, fieldType);
|
this.processKvp(cipher, fieldName, fieldValue, fieldType);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user