Prevent dragging of a component while being edited

This commit is contained in:
Andrew Kingston 2021-11-16 11:46:46 +00:00
parent 0bac3765b3
commit 07e455257c
1 changed files with 2 additions and 2 deletions

View File

@ -70,10 +70,10 @@
$builderStore.inBuilder &&
($builderStore.previewType === "layout" || insideScreenslot) &&
!isBlock
$: draggable = interactive && !isLayout && !isScreen
$: droppable = interactive && !isLayout && !isScreen
$: editable = definition.editable
$: editing = editable && selected && $builderStore.editMode
$: draggable = !editing && interactive && !isLayout && !isScreen
$: droppable = interactive && !isLayout && !isScreen
// Empty components are those which accept children but do not have any.
// Empty states can be shown for these components, but can be disabled