From f84662d2ee12986fc256ced7194edd1f37ada130 Mon Sep 17 00:00:00 2001 From: balibabu Date: Wed, 19 Nov 2025 10:29:26 +0800 Subject: [PATCH] Fix: Fixed an issue where variable aggregation operators could not be connected to other operators. #10427 (#11358) ### What problem does this PR solve? Fix: Fixed an issue where variable aggregation operators could not be connected to other operators. #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- web/src/pages/agent/constant/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/pages/agent/constant/index.tsx b/web/src/pages/agent/constant/index.tsx index 76da5541b..420b2060c 100644 --- a/web/src/pages/agent/constant/index.tsx +++ b/web/src/pages/agent/constant/index.tsx @@ -700,13 +700,14 @@ export const RestrictedUpstreamMap = { [Operator.Placeholder]: [Operator.Begin], [Operator.DataOperations]: [Operator.Begin], [Operator.ListOperations]: [Operator.Begin], + [Operator.VariableAssigner]: [Operator.Begin], + [Operator.VariableAggregator]: [Operator.Begin], [Operator.Parser]: [Operator.Begin], // pipeline [Operator.Splitter]: [Operator.Begin], [Operator.HierarchicalMerger]: [Operator.Begin], [Operator.Tokenizer]: [Operator.Begin], [Operator.Extractor]: [Operator.Begin], [Operator.File]: [Operator.Begin], - [Operator.VariableAssigner]: [Operator.Begin], }; export const NodeMap = {