Skip to content

Commit cacf374

Browse files
committed
Stability
1 parent f26af75 commit cacf374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/chart/parameter/component/NodePropertyParameterSelect.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,12 @@ const NodePropertyParameterSelectComponent = (props: ParameterSelectProps) => {
101101
realValueRowIndex
102102
];
103103

104-
newValue.push(val?.low ?? val);
104+
newValue.push(RenderSubValue(val));
105105
} else if (!isMulti) {
106106
newValue = extraRecords.filter((r) => (r?._fields?.[displayValueRowIndex]?.toString() || null) == newDisplay)[0]
107107
._fields[realValueRowIndex];
108108

109-
newValue = newValue?.low || newValue;
109+
newValue = RenderSubValue(newValue);
110110
} else {
111111
let ele = props.parameterDisplayValue.filter((x) => !newDisplay.includes(x))[0];
112112
newValue = [...props.parameterValue];

0 commit comments

Comments
 (0)