fix: linting errors (#54)
This commit is contained in:
parent
97128a0816
commit
a5d5b35376
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ export class FormGroup {
|
||||||
constructor(controls: FormControlBase[], name = '') {
|
constructor(controls: FormControlBase[], name = '') {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.controls = controls
|
this.controls = controls
|
||||||
.filter(control => control.type !== 'submit')
|
.filter((control) => control.type !== 'submit')
|
||||||
.map(control => new FormControl(control));
|
.map((control) => new FormControl(control));
|
||||||
}
|
}
|
||||||
|
|
||||||
get(name: string): FormControl | undefined {
|
get(name: string): FormControl | undefined {
|
||||||
|
|
Loading…
Reference in a new issue