1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-01 09:13:54 +00:00

make field name and value optional

This commit is contained in:
jaasen-livefront
2025-11-10 10:05:22 -08:00
parent 7682f5dc37
commit e75e082344

View File

@@ -31,8 +31,8 @@ export class FieldExport {
return domain;
}
name: string = "";
value: string = "";
name?: string;
value?: string;
type: FieldType = FieldType.Text;
linkedId?: LinkedIdType;