1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-27 12:36:14 +01:00

Added missing member, showValue to Field (#195)

This commit is contained in:
Chad Scharf 2020-11-03 14:36:19 -05:00 committed by GitHub
parent 0e9e73ce95
commit 6e89c04f3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@ export class FieldView implements View {
value: string = null;
type: FieldType = null;
newField: boolean = false; // Marks if the field is new and hasn't been saved
showValue: boolean = false;
constructor(f?: Field) {
if (!f) {