Skip to content

Commit 9c1cd41

Browse files
Copilotrenemadsen
andcommitted
Restore missing appendTo="body" attributes in modal dialog mtx-select components
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent 8106a52 commit 9c1cd41

7 files changed

Lines changed: 12 additions & 5 deletions

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ <h3 mat-dialog-title>{{'New dropdown' | translate}}</h3>
99
[bindLabel]="'name'"
1010
[items]="availableSecurityGroups"
1111
id="securityGroupsCustomDropdownSelector"
12-
[multiple]="true">
12+
[multiple]="true"
13+
appendTo="body">
1314
</mtx-select>
1415
</mat-form-field>
1516

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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ <h3 mat-dialog-title>{{ 'New custom link' | translate }}</h3>
1111
[items]="availableSecurityGroups"
1212
id="securityGroupsCustomDropdownSelector"
1313
[multiple]="true"
14+
appendTo="body"
1415
></mtx-select>
1516
</mat-form-field>
1617
<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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ <h3 mat-dialog-title>{{'Edit menu entry' | translate}}</h3>
1010
[bindLabel]="'name'"
1111
[items]="availableSecurityGroups"
1212
id="editSecurityGroupsSelector"
13-
[multiple]="true" >
13+
[multiple]="true"
14+
appendTo="body">
1415
</mtx-select>
1516
</mat-form-field>
1617
<mat-form-field>

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ <h3 mat-dialog-title>{{ 'Create eForm' | translate }}</h3>
1212
[bindLabel]="'name'"
1313
[items]="availableTags"
1414
id="createEFormMultiSelector"
15-
[multiple]="true">
15+
[multiple]="true"
16+
appendTo="body">
1617
</mtx-select>
1718
</mat-form-field>
1819
</div>

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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ <h3 mat-dialog-title>{{ (isFieldSelected ? 'Edit field' : 'New field') | transla
1717
[clearable]="false"
1818
[bindLabel]="'name'"
1919
[bindValue]="'id'"
20+
appendTo="body"
2021
[ngModel]="recursionModel.field.fieldType"
2122
(ngModelChange)="updateFieldType($event)"
2223
id="fieldTypeSelector"

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ <h3 mat-dialog-title>{{'Edit email recipient' | translate}}</h3>
1111
[bindLabel]="'name'"
1212
[items]="availableTags"
1313
id="editEmailRecipientsMultiSelector"
14-
[multiple]="true">
14+
[multiple]="true"
15+
appendTo="body">
1516
</mtx-select>
1617
</mat-form-field>
1718
<mat-form-field>

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ <h3 mat-dialog-title>{{'New Email recipients' | translate}}</h3>
1111
[bindLabel]="'name'"
1212
[items]="availableTags"
1313
id="createEmailRecipientsMultiSelector"
14-
[multiple]="true">
14+
[multiple]="true"
15+
appendTo="body">
1516
</mtx-select>
1617
</mat-form-field>
1718
<mat-form-field>

0 commit comments

Comments
 (0)