From de8dc1e9cd7beea2ce62656e9e7676214f77a110 Mon Sep 17 00:00:00 2001 From: Faton Ramadani Date: Mon, 10 Apr 2023 07:23:15 +0200 Subject: [PATCH] fix(frontend): remove stopPropagation that was preventing components dnd (#1378) --- .../lib/components/apps/editor/component/ComponentWrapper.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/lib/components/apps/editor/component/ComponentWrapper.svelte b/frontend/src/lib/components/apps/editor/component/ComponentWrapper.svelte index 40297f672b..bc535c00a5 100644 --- a/frontend/src/lib/components/apps/editor/component/ComponentWrapper.svelte +++ b/frontend/src/lib/components/apps/editor/component/ComponentWrapper.svelte @@ -13,7 +13,6 @@ function selectComponent(e: PointerEvent, id: string) { if (!$connectingInput.opened) { - e.stopPropagation() selectId(e, id, selectedComponent, $app) if ($focusedGrid?.parentComponentId != id) { $focusedGrid = undefined