Fix issue editing components in the preview when nested inside another draggable component

This commit is contained in:
Andrew Kingston 2021-10-28 15:52:07 +01:00
parent 387831b799
commit c48a56b997
2 changed files with 3 additions and 2 deletions

View File

@ -67,7 +67,8 @@
$: renderKey = `${propsHash}-${emptyState}`
$: editable = definition.editable
$: editing = editable && selected && $builderStore.editMode
$: draggable = interactive && !isLayout && !isScreen && !editing
$: draggable =
interactive && !isLayout && !isScreen && !$builderStore.editMode
$: droppable = interactive && !isLayout && !isScreen
// Update component context

View File

@ -42,7 +42,7 @@ export const styleable = (node, styles = {}) => {
}
// Allow dragging if required
node.setAttribute("draggable", !!styles.draggable)
node.setAttribute("draggable", !!newStyles.draggable)
// Applies a style string to a DOM node
const applyStyles = styleString => {