mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 19:23:52 +00:00
login custom fields view/edit
This commit is contained in:
@@ -18,6 +18,17 @@
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
if (cipher.fields) {
|
||||
this.fields = [];
|
||||
for (var i = 0; i < cipher.fields.length; i++) {
|
||||
this.fields.push({
|
||||
type: cipher.fields[i].type,
|
||||
name: cipher.fields[i].name ? cipher.fields[i].name.encryptedString : null,
|
||||
value: cipher.fields[i].value ? cipher.fields[i].value.encryptedString : null,
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
var FolderRequest = function (folder) {
|
||||
|
||||
Reference in New Issue
Block a user