From 18de8dca5a03ca15706ffc64e8ac3f28edf346bd Mon Sep 17 00:00:00 2001 From: Dennis Collaris <d.collaris@me.com> Date: Wed, 23 Oct 2024 16:45:35 +0200 Subject: [PATCH] fix: remove legacy logic to enable handles on entity pills --- .../pills/customFlowPills/entitypill/QueryEntityPill.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libs/shared/lib/querybuilder/pills/customFlowPills/entitypill/QueryEntityPill.tsx b/libs/shared/lib/querybuilder/pills/customFlowPills/entitypill/QueryEntityPill.tsx index 1485784c1..0aa50ebba 100644 --- a/libs/shared/lib/querybuilder/pills/customFlowPills/entitypill/QueryEntityPill.tsx +++ b/libs/shared/lib/querybuilder/pills/customFlowPills/entitypill/QueryEntityPill.tsx @@ -143,9 +143,6 @@ export const QueryEntityPill = React.memo((node: SchemaReactflowEntityNode) => { position={Position.Left} className={'!rounded-none !bg-transparent !w-full !h-full !border-0 !right-0 !left-0'} type="target" - style={{ - pointerEvents: false ? 'auto' : 'none', - }} ></Handle> } handleRight={ @@ -155,9 +152,6 @@ export const QueryEntityPill = React.memo((node: SchemaReactflowEntityNode) => { position={Position.Right} className={'!rounded-none !bg-transparent !w-full !h-full !border-0 !right-0 !left-0'} type="source" - style={{ - pointerEvents: false ? 'auto' : 'none', - }} ></Handle> } > -- GitLab