From 95498829fb0358a69ad9d0d92299e1431db28042 Mon Sep 17 00:00:00 2001 From: Aaron Louie Date: Mon, 15 Jun 2020 15:03:28 -0400 Subject: [PATCH] Semicolon --- src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index c11509c..80ba960 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -19,7 +19,7 @@ export class AppComponent { this.googleAnalyticsService.init(this.environment.googleAnalyticsKey); const fileTypes = Object.values(FileType); fileTypes.forEach(t => { - const url = this.domSanitizer.bypassSecurityTrustResourceUrl(`assets/icons/file_types/${t}.svg`) + const url = this.domSanitizer.bypassSecurityTrustResourceUrl(`assets/icons/file_types/${t}.svg`); this.matIconRegistry.addSvgIconInNamespace('crc', t, url); }); this.titleService.setTitle(this.environment.title);