diff --git a/projects/common/ui-elements/drop-list/drop-list.ts b/projects/common/ui-elements/drop-list/drop-list.ts index cdce1fa1ccd44737c88e7d930da575c7ab4719c3..d81ae8e1dcb00f751cefc4762c482f29720f686d 100644 --- a/projects/common/ui-elements/drop-list/drop-list.ts +++ b/projects/common/ui-elements/drop-list/drop-list.ts @@ -33,6 +33,10 @@ export class DropListElement extends InputElement implements PositionedElement, serializedElement.value !== undefined ? serializedElement.value as DragNDropValueObject[] | null : []; this.height = serializedElement.height || 100; + this.positionProps.useMinHeight = + serializedElement.positionProps?.useMinHeight !== undefined ? + serializedElement.positionProps.useMinHeight as boolean : + true; this.surfaceProps.backgroundColor = serializedElement.surfaceProps?.backgroundColor as string || serializedElement.backgroundColor as string ||