Skip to content
Snippets Groups Projects
Commit 3abd2c10 authored by Leonardo's avatar Leonardo
Browse files

chore: change ignoreNoInput name

parent 6b5ea957
No related branches found
No related tags found
1 merge request!36feat: date logic pill support
Pipeline #146281 passed
......@@ -105,7 +105,7 @@ function calculateQueryLogic(
const first = node.attributes.logic.logic[0];
const logicMap = Object.values(AllLogicMap).find(value => value.type === first);
if (logicMap && logicMap.ignoreNoOutput && connectionsToRight.length === 0) {
if (logicMap && logicMap.excludeFromQueryIfOutputNotConnected && connectionsToRight.length === 0) {
log.debug('AllLogicMap with ignored output due to missing third term:', first, AllLogicMap[first], node.attributes.logic.logic);
return undefined; // Return a neutral value to ignore this logic
}
......
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