mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-14 13:59:51 +01:00
fix lint issues
This commit is contained in:
parent
befa9cbf08
commit
866954b180
@ -2983,8 +2983,8 @@
|
||||
};
|
||||
|
||||
if (type === 'Web Logins' || type === 'Servers' || type === 'Email Accounts') {
|
||||
cipher.login.uris = makeUriArray(value[4]),
|
||||
cipher.login.username = value[2] && value[2] !== '' ? value[2] : null;
|
||||
cipher.login.uris = makeUriArray(value[4]);
|
||||
cipher.login.username = value[2] && value[2] !== '' ? value[2] : null;
|
||||
cipher.login.password = value[3] && value[3] !== '' ? value[3] : null;
|
||||
parseFieldsToNotes(5, value, cipher);
|
||||
}
|
||||
|
@ -53,8 +53,9 @@
|
||||
login_totp: null
|
||||
};
|
||||
|
||||
var j;
|
||||
if (decCiphers[i].fields) {
|
||||
for (var j = 0; j < decCiphers[i].fields.length; j++) {
|
||||
for (j = 0; j < decCiphers[i].fields.length; j++) {
|
||||
if (!cipher.fields) {
|
||||
cipher.fields = '';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user