1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-09 20:22:51 +02:00

dont use null field names

This commit is contained in:
Kyle Spearrin 2018-05-24 09:29:27 -04:00
parent 58a267243a
commit 70291453d5

View File

@ -249,8 +249,6 @@ export default class AutofillService implements AutofillServiceInterface {
fields.forEach((f: any) => {
if (this.hasValue(f.name)) {
fieldNames.push(f.name.toLowerCase());
} else {
fieldNames.push(null);
}
});