Skip to content
Snippets Groups Projects
Commit 9824f801 authored by rhenck's avatar rhenck
Browse files

[editor] Fix dynamic elements to not use min-height when not set

Fixes: #203
parent f966bb23
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ import { DynamicSectionHelperGridComponent } from './dynamic-section-helper-grid
#elementComponent
[element]="$any(element)"
[style.min-width.px]="element.width"
[style.min-height.px]="element.height"
[style.min-height.px]="element.position.useMinHeight ? element.height : null"
[style.margin-left.px]="element.position.marginLeft"
[style.margin-right.px]="element.position.marginRight"
[style.margin-top.px]="element.position.marginTop"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment