1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00: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

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) {