From 5a7d399901f9d392ca0f8297d72302ff51def43f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Levent=20Arman=20=C3=96zak?= Date: Wed, 22 Apr 2020 10:16:35 +0300 Subject: [PATCH] add parentheses to forkJoin --- templates/module/angular/src/app/app.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/module/angular/src/app/app.component.ts b/templates/module/angular/src/app/app.component.ts index 8187365734..1cf17b8116 100644 --- a/templates/module/angular/src/app/app.component.ts +++ b/templates/module/angular/src/app/app.component.ts @@ -13,13 +13,13 @@ export class AppComponent implements OnInit { constructor(private lazyLoadService: LazyLoadService) {} ngOnInit() { - forkJoin( + forkJoin([ this.lazyLoadService.load( LOADING_STRATEGY.PrependAnonymousStyleToHead('fontawesome-v4-shims.min.css'), ), this.lazyLoadService.load( LOADING_STRATEGY.PrependAnonymousStyleToHead('fontawesome-all.min.css'), ), - ).subscribe(); + ]).subscribe(); } }