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:
balibabu
2025-11-10 13:27:09 +08:00
committed by GitHub
parent d016a06fd5
commit 86af330f06
8 changed files with 40 additions and 13 deletions

View File

@ -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>