Semicolon

This commit is contained in:
Aaron Louie 2020-06-15 15:03:28 -04:00
parent f29d810106
commit 95498829fb
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export class AppComponent {
this.googleAnalyticsService.init(this.environment.googleAnalyticsKey); this.googleAnalyticsService.init(this.environment.googleAnalyticsKey);
const fileTypes = Object.values(FileType); const fileTypes = Object.values(FileType);
fileTypes.forEach(t => { 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.matIconRegistry.addSvgIconInNamespace('crc', t, url);
}); });
this.titleService.setTitle(this.environment.title); this.titleService.setTitle(this.environment.title);