fix: linting errors (#54)

This commit is contained in:
Ayo Ayco 2022-10-06 16:10:49 +02:00 committed by GitHub
parent 97128a0816
commit a5d5b35376
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,8 +8,8 @@ export class FormGroup {
constructor(controls: FormControlBase[], name = '') {
this.name = name;
this.controls = controls
.filter(control => control.type !== 'submit')
.map(control => new FormControl(control));
.filter((control) => control.type !== 'submit')
.map((control) => new FormControl(control));
}
get(name: string): FormControl | undefined {