From d8b98035debded1774575c73b44479475969c5ef Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 16 Jun 2020 22:56:01 +0100 Subject: [PATCH] fixed build --- src/Ombi/ClientApp/src/app/login/resetpassword.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Ombi/ClientApp/src/app/login/resetpassword.component.ts b/src/Ombi/ClientApp/src/app/login/resetpassword.component.ts index 0af4e86d4..7c228e962 100644 --- a/src/Ombi/ClientApp/src/app/login/resetpassword.component.ts +++ b/src/Ombi/ClientApp/src/app/login/resetpassword.component.ts @@ -13,6 +13,7 @@ import { IdentityService, ImageService, NotificationService, SettingsService } f export class ResetPasswordComponent implements OnInit { public form: FormGroup; + public customizationSettings: ICustomizationSettings; public emailSettingsEnabled: boolean; public baseUrl: string; public background: any; @@ -35,6 +36,7 @@ export class ResetPasswordComponent implements OnInit { if (base.length > 1) { this.baseUrl = base; } + this.settingsService.getCustomization().subscribe(x => this.customizationSettings = x); this.settingsService.getEmailSettingsEnabled().subscribe(x => this.emailSettingsEnabled = x); }