ci: fix broken build

This commit is contained in:
Miško Hevery 2018-06-25 11:36:35 -07:00
parent 7d318743c1
commit 166d90d2a9
1 changed files with 3 additions and 3 deletions

View File

@ -18,11 +18,11 @@ import {Component, Directive, EventEmitter} from '@angular/core';
`
})
export class BankAccountComponent {
bankName: string;
id: string;
bankName: string|null = null;
id: string|null = null;
// this property is not bound, and won't be automatically updated by Angular
normalizedBankName: string;
normalizedBankName: string|null = null;
}
@Component({