Skip to content
Snippets Groups Projects
Commit a609f600 authored by Richard Henck's avatar Richard Henck
Browse files

Fix DropList orientation setting to not use horizontal for floating

parent 8dae9a87
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ import { FormElementComponent } from '../../directives/form-element-component.di ...@@ -28,7 +28,7 @@ import { FormElementComponent } from '../../directives/form-element-component.di
(cdkDropListEntered)="showsPlaceholder = true" (cdkDropListEntered)="showsPlaceholder = true"
(cdkDropListExited)="showsPlaceholder = false" (cdkDropListExited)="showsPlaceholder = false"
[cdkDropListData]="this" [cdkDropListConnectedTo]="elementModel.connectedTo" [cdkDropListData]="this" [cdkDropListConnectedTo]="elementModel.connectedTo"
[cdkDropListOrientation]="elementModel.orientation === 'vertical' ? 'vertical' : 'horizontal'" [cdkDropListOrientation]="$any(elementModel.orientation)"
[cdkDropListSortingDisabled]="elementModel.orientation === 'flex'" [cdkDropListSortingDisabled]="elementModel.orientation === 'flex'"
[cdkDropListEnterPredicate]="validDropPredicate" [cdkDropListEnterPredicate]="validDropPredicate"
(cdkDropListDropped)="drop($event);" (cdkDropListDropped)="drop($event);"
......
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