-
1 && myForm.get('placement').value" input [formInput]="myForm.get('placement')"
+
1" input [formInput]="myForm.get('placement')"
placeholder="Select placement" [options]="placementsOptions" type="select">
1 " input [formInput]="myForm.get('order')" placeholder="Select order" [options]="orderOptions" type="select">
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});