Skip to content

Commit ebb6efe

Browse files
Copilotrenemadsen
andcommitted
Fix appendTo syntax to use property binding per mtx-select documentation
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent 9c1cd41 commit ebb6efe

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

eform-client/src/app/modules/advanced/components/sites/site-edit/site-edit.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ <h3 mat-dialog-title>{{ 'Edit' | translate}}</h3>
2020
[items]="availableTags"
2121
id="tagSelector"
2222
[multiple]="true"
23-
appendTo="body">
23+
[appendTo]="'body'">
2424
</mtx-select>
2525
</mat-form-field>
2626
</div>

eform-client/src/app/modules/advanced/modules/navigation-menu/components/menu-custom/navigation-menu-custom-dropdown/navigation-menu-custom-dropdown.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h3 mat-dialog-title>{{'New dropdown' | translate}}</h3>
1010
[items]="availableSecurityGroups"
1111
id="securityGroupsCustomDropdownSelector"
1212
[multiple]="true"
13-
appendTo="body">
13+
[appendTo]="'body'">
1414
</mtx-select>
1515
</mat-form-field>
1616

eform-client/src/app/modules/advanced/modules/navigation-menu/components/menu-custom/navigation-menu-custom-link/navigation-menu-custom-link.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h3 mat-dialog-title>{{ 'New custom link' | translate }}</h3>
1111
[items]="availableSecurityGroups"
1212
id="securityGroupsCustomDropdownSelector"
1313
[multiple]="true"
14-
appendTo="body"
14+
[appendTo]="'body'"
1515
></mtx-select>
1616
</mat-form-field>
1717
<div class="d-flex flex-row align-items-center need-wrapper">

eform-client/src/app/modules/advanced/modules/navigation-menu/components/menu-item/navigation-menu-item-edit/navigation-menu-item-edit.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h3 mat-dialog-title>{{'Edit menu entry' | translate}}</h3>
1111
[items]="availableSecurityGroups"
1212
id="editSecurityGroupsSelector"
1313
[multiple]="true"
14-
appendTo="body">
14+
[appendTo]="'body'">
1515
</mtx-select>
1616
</mat-form-field>
1717
<mat-form-field>

eform-client/src/app/modules/eforms/components/eform-create-modal/eform-create-modal.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h3 mat-dialog-title>{{ 'Create eForm' | translate }}</h3>
1313
[items]="availableTags"
1414
id="createEFormMultiSelector"
1515
[multiple]="true"
16-
appendTo="body">
16+
[appendTo]="'body'">
1717
</mtx-select>
1818
</mat-form-field>
1919
</div>

eform-client/src/app/modules/eforms/components/eform-edit-tags-modal/eform-edit-tags-modal.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h3 mat-dialog-title>{{ 'Select tags for template' | translate }}</h3>
1111
[items]="availableTags"
1212
id="tagSelector"
1313
[multiple]="true"
14-
appendTo="body"
14+
[appendTo]="'body'"
1515
></mtx-select>
1616
</mat-form-field>
1717
<!--<div class="row">

eform-client/src/app/modules/eforms/eform-visual-editor/components/eform-visual-editor-elements/field/visual-editor-additional-fields/visual-editor-additional-field-entity-search/visual-editor-additional-field-entity-search.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<mat-form-field>
44
<mat-label>{{'Selected entity group search' | translate}}</mat-label>
55
<mtx-select
6-
appendTo="body"
6+
[appendTo]="'body'"
77
[dropdownPosition]="'bottom'"
88
[clearable]="false"
99
[bindLabel]="'name'"

eform-client/src/app/modules/eforms/eform-visual-editor/components/eform-visual-editor-elements/field/visual-editor-additional-fields/visual-editor-additional-field-entity-select/visual-editor-additional-field-entity-select.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<mat-form-field>
44
<mat-label>{{'Selected entity group select' | translate}}</mat-label>
55
<mtx-select
6-
appendTo="body"
6+
[appendTo]="'body'"
77
[dropdownPosition]="'bottom'"
88
[clearable]="false"
99
[bindLabel]="'name'"

eform-client/src/app/modules/eforms/eform-visual-editor/components/eform-visual-editor-elements/field/visual-editor-field-modal/visual-editor-field-modal.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h3 mat-dialog-title>{{ (isFieldSelected ? 'Edit field' : 'New field') | transla
1717
[clearable]="false"
1818
[bindLabel]="'name'"
1919
[bindValue]="'id'"
20-
appendTo="body"
20+
[appendTo]="'body'"
2121
[ngModel]="recursionModel.field.fieldType"
2222
(ngModelChange)="updateFieldType($event)"
2323
id="fieldTypeSelector"

eform-client/src/app/modules/email-recipients/components/recipients/email-recipient-edit/email-recipient-edit.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h3 mat-dialog-title>{{'Edit email recipient' | translate}}</h3>
1212
[items]="availableTags"
1313
id="editEmailRecipientsMultiSelector"
1414
[multiple]="true"
15-
appendTo="body">
15+
[appendTo]="'body'">
1616
</mtx-select>
1717
</mat-form-field>
1818
<mat-form-field>

0 commit comments

Comments
 (0)