From 7d3495f805af5c2933245760b42cbcafb7b50bcf Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 1 Dec 2017 16:08:18 +0000 Subject: [PATCH] Fix #1762 --- src/Ombi/ClientApp/app/app.component.html | 4 ++-- src/Ombi/ClientApp/app/app.component.ts | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Ombi/ClientApp/app/app.component.html b/src/Ombi/ClientApp/app/app.component.html index 09d2a9462..b01904104 100644 --- a/src/Ombi/ClientApp/app/app.component.html +++ b/src/Ombi/ClientApp/app/app.component.html @@ -12,10 +12,10 @@
- {{customizationSettings.applicationName}} + {{customizationSettings.applicationName}} - Ombi + Ombi
diff --git a/src/Ombi/ClientApp/app/app.component.ts b/src/Ombi/ClientApp/app/app.component.ts index 1c69d6c6c..b8f5d5830 100644 --- a/src/Ombi/ClientApp/app/app.component.ts +++ b/src/Ombi/ClientApp/app/app.component.ts @@ -42,6 +42,7 @@ export class AppComponent implements OnInit { this.settingsService.getCustomization().subscribe(x => this.customizationSettings = x); this.router.events.subscribe((event: NavigationStart) => { + console.log(event.url); this.currentUrl = event.url; if (event instanceof NavigationStart) { this.user = this.authService.claims();