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 {
|
export class BankAccountComponent {
|
||||||
bankName: string;
|
bankName: string|null = null;
|
||||||
id: string;
|
id: string|null = null;
|
||||||
|
|
||||||
// this property is not bound, and won't be automatically updated by Angular
|
// this property is not bound, and won't be automatically updated by Angular
|
||||||
normalizedBankName: string;
|
normalizedBankName: string|null = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
|
Loading…
Reference in New Issue