ci: fix broken build
This commit is contained in:
parent
7d318743c1
commit
166d90d2a9
|
@ -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({
|
||||
|
|
Loading…
Reference in New Issue