mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-08 09:43:42 +01:00
default to null
This commit is contained in:
parent
3869dcaf7b
commit
47385a2818
@ -4,12 +4,12 @@ import { Card } from '../domain/card';
|
|||||||
|
|
||||||
export class CardView implements View {
|
export class CardView implements View {
|
||||||
cardholderName: string;
|
cardholderName: string;
|
||||||
expMonth: string;
|
expMonth: string = null;
|
||||||
expYear: string;
|
expYear: string;
|
||||||
code: string;
|
code: string;
|
||||||
|
|
||||||
// tslint:disable
|
// tslint:disable
|
||||||
private _brand: string;
|
private _brand: string = null;
|
||||||
private _number: string;
|
private _number: string;
|
||||||
private _subTitle: string;
|
private _subTitle: string;
|
||||||
// tslint:enable
|
// tslint:enable
|
||||||
|
@ -3,7 +3,7 @@ import { View } from './view';
|
|||||||
import { Identity } from '../domain/identity';
|
import { Identity } from '../domain/identity';
|
||||||
|
|
||||||
export class IdentityView implements View {
|
export class IdentityView implements View {
|
||||||
title: string;
|
title: string = null;
|
||||||
middleName: string;
|
middleName: string;
|
||||||
address1: string;
|
address1: string;
|
||||||
address2: string;
|
address2: string;
|
||||||
|
Loading…
Reference in New Issue
Block a user