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);