From 9826e5d3581095c8ab4f06e3ff85e68d93b23dd6 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Fri, 6 Sep 2024 18:04:05 +0300 Subject: [PATCH] [develop | FIXED]: Fix a bug with help text placement doesn't be shown in add help text. --- dashboard/helpTexts/page-help-content-form.component.html | 2 +- dashboard/helpTexts/page-help-content-form.component.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dashboard/helpTexts/page-help-content-form.component.html b/dashboard/helpTexts/page-help-content-form.component.html index 030e7434..401ebf60 100644 --- a/dashboard/helpTexts/page-help-content-form.component.html +++ b/dashboard/helpTexts/page-help-content-form.component.html @@ -34,7 +34,7 @@
-
diff --git a/dashboard/helpTexts/page-help-content-form.component.ts b/dashboard/helpTexts/page-help-content-form.component.ts index 0dd656fa..3ff04faf 100644 --- a/dashboard/helpTexts/page-help-content-form.component.ts +++ b/dashboard/helpTexts/page-help-content-form.component.ts @@ -149,6 +149,9 @@ export class PageContentFormComponent implements OnInit { if (page.left) { this.placementsOptions.push({label: "left", value: "left"}); } + if (page.right) { + this.placementsOptions.push({label: "right", value: "right"}); + } this.orderOptions = []; for (let i = 1; i < countContents + 1; i++) { this.orderOptions.push({label: "" + i, value: i});