mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 17:16:52 +08:00
Feat: The keys for data manipulation operators can only be numbers, letters, and underscores. #10427 (#11130)
### What problem does this PR solve? Feat: The keys for data manipulation operators can only be numbers, letters, and underscores. #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -79,7 +79,7 @@ export function AccordionOperators({
|
||||
Operator.Code,
|
||||
Operator.StringTransform,
|
||||
Operator.DataOperations,
|
||||
Operator.VariableAssigner,
|
||||
// Operator.VariableAssigner,
|
||||
Operator.VariableAggregator,
|
||||
]}
|
||||
isCustomDropdown={isCustomDropdown}
|
||||
|
||||
@ -22,7 +22,7 @@ export function VariableAggregatorNode({
|
||||
<span className="text-text-secondary">{x.type}</span>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
{x.variables.map((y, index) => (
|
||||
{x.variables?.map((y, index) => (
|
||||
<LabelCard key={index} className="truncate">
|
||||
{getLabel(y.value)}
|
||||
</LabelCard>
|
||||
|
||||
Reference in New Issue
Block a user