Chore: ng lint using the recommended @angular-eslint style

This commit is contained in:
2020-12-08 18:50:46 +05:30
parent 130d9197e5
commit d65379a068
50 changed files with 524 additions and 636 deletions

View File

@ -70,7 +70,9 @@ export class HeaderFooterComponent implements OnInit {
getItem(): HeaderFooter {
const formModel = this.form.value;
const item = this.list.find((v) => v.id === this.id);
if (item === undefined) return new HeaderFooter();
if (item === undefined) {
return new HeaderFooter();
}
item.text = formModel.text;
return item;
}