From c46b1e851f48af4f80c406b6454ad5443020c436 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Seku=C5=82a?= Date: Fri, 25 Feb 2022 11:40:17 +0100 Subject: [PATCH] [AAE-6808] Fix for loading external font (#2461) --- app/src/app.config.json.tpl | 1 + app/src/app/app.component.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/app/src/app.config.json.tpl b/app/src/app.config.json.tpl index 110c1ebda..c476c0397 100644 --- a/app/src/app.config.json.tpl +++ b/app/src/app.config.json.tpl @@ -34,6 +34,7 @@ "headerColor": "#ffffff", "headerTextColor": "#000000", "customCssPath": "", + "webFontPath": "", "pagination": { "size": 25, "supportedPageSizes": [25, 50, 100] diff --git a/app/src/app/app.component.ts b/app/src/app/app.component.ts index 421772063..62bb7f04e 100644 --- a/app/src/app/app.component.ts +++ b/app/src/app/app.component.ts @@ -170,6 +170,7 @@ export class AppComponent implements OnInit, OnDestroy { logoPath: this.config.get('application.logo'), headerImagePath: this.config.get('application.headerImagePath'), customCssPath: this.config.get('customCssPath'), + webFontPath: this.config.get('webFontPath'), sharedUrl: baseShareUrl };