diff --git a/src/app/app-config.service.ts b/src/app/app-config.service.ts
index 4a70e9290..f363027f8 100644
--- a/src/app/app-config.service.ts
+++ b/src/app/app-config.service.ts
@@ -120,6 +120,7 @@ export interface AppConfigInterface {
labelsLocalization?: LabelsLocalization;
dateFormat?: string;
defaultMainPage?: MainPageConfiguration;
+ supportEmail?: string;
}
function isMainPageConfiguration(obj: any): obj is MainPageConfiguration {
diff --git a/src/app/help/help/help.component.html b/src/app/help/help/help.component.html
index 4474f5343..fda9d3f9c 100644
--- a/src/app/help/help/help.component.html
+++ b/src/app/help/help/help.component.html
@@ -108,3 +108,15 @@
+
+
+
+
+ Questions or issues?
+
+
+ If you have any questions or need help, please contact
+ {{ supportEmail }}.
+
+
+
diff --git a/src/app/help/help/help.component.ts b/src/app/help/help/help.component.ts
index ef4c0ce2e..de9e67c85 100644
--- a/src/app/help/help/help.component.ts
+++ b/src/app/help/help/help.component.ts
@@ -14,6 +14,7 @@ export class HelpComponent implements OnInit {
gettingStarted: string | null = null;
shoppingCartEnabled = false;
helpMessages: HelpMessages;
+ supportEmail: string | undefined;
constructor(public appConfigService: AppConfigService) {}
ngOnInit() {
@@ -25,5 +26,6 @@ export class HelpComponent implements OnInit {
);
this.gettingStarted = this.appConfig.gettingStarted;
this.shoppingCartEnabled = this.appConfig.shoppingCartEnabled;
+ this.supportEmail = this.appConfig.supportEmail;
}
}