diff --git a/app/components/board/BoardSection.vue b/app/components/board/BoardSection.vue index 1e70b2f..b51856f 100644 --- a/app/components/board/BoardSection.vue +++ b/app/components/board/BoardSection.vue @@ -6,7 +6,7 @@ const props = defineProps<{ section: BoardSection }>() -const { isEditing, markDirty } = useEditMode() +const { isEditing, showWidgetPicker, markDirty } = useEditMode() const store = useBoardStore() const showSettings = ref(false) @@ -104,6 +104,11 @@ function toggleCollapse() { group="widgets" :animation="150" ghost-class="opacity-30" + :force-fallback="true" + :fallback-on-body="true" + :fallback-tolerance="3" + filter=".no-drag" + :prevent-on-filter="false" class="grid gap-4" :class="gridClass" @change="onDragChange" @@ -118,9 +123,10 @@ function toggleCollapse() { -