ci: fix broken build
This commit is contained in:
@ -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({
|
||||||
|
Reference in New Issue
Block a user