AAE-38287 Cannot select dropdown options when selection type is multiple (#11204)

This commit is contained in:
Bartosz Sekula
2025-09-17 19:14:12 +02:00
committed by GitHub
parent 1b212e8805
commit 2b08e0c1d0

View File

@@ -138,7 +138,9 @@ export class DropdownCloudWidgetComponent extends WidgetComponent implements OnI
} }
updateReactiveFormControl(): void { updateReactiveFormControl(): void {
this.setFormControlValue(); if (!this.field.hasMultipleValues) {
this.setFormControlValue();
}
this.updateFormControlState(); this.updateFormControlState();
this.handleErrors(); this.handleErrors();
} }