Skip to content
Snippets Groups Projects
Commit 36eaf55f authored by Sjoerd Vink's avatar Sjoerd Vink Committed by Leonardo Christino
Browse files

fix(logicPill): upper/lower case with right handle

parent e6252028
Branches fix/sharelink
No related tags found
1 merge request!331fix: upper/lower case logic pill with right handle
Pipeline #141664 passed
......@@ -66,12 +66,13 @@ export function QueryLogicPill(node: SchemaReactflowLogicNode) {
return null;
}
console.log('node', node);
return (
<LogicPill
title={
<div className="flex flex-row justify-between items-center">
<span>{connectionsToLeft[0]?.attributes?.sourceHandleData.attributeName}</span>
<DropdownContainer>
<DropdownTrigger size="md">
<Button
......@@ -155,7 +156,7 @@ export function QueryLogicPill(node: SchemaReactflowLogicNode) {
</div>
);
})}
{/* {!!node.data.logic.output && (
{['upper_case', 'lower_case'].includes(node.data.logic.output.name) && (
<Handle
type={'source'}
position={Position.Right}
......@@ -167,7 +168,7 @@ export function QueryLogicPill(node: SchemaReactflowLogicNode) {
})}
className={styleHandleMap?.[output.type]}
></Handle>
)} */}
)}
</div>
</LogicPill>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment