fix(editor): Fix expanding schema items with same names on NDV (#14673)

This commit is contained in:
Jaakko Husso
2025-04-17 10:26:05 +03:00
committed by GitHub
parent 11a36b758d
commit ad386cde31

View File

@@ -380,7 +380,7 @@ export const useFlattenSchema = () => {
const expression = `{{ ${expressionPrefix ? expressionPrefix + schema.path : schema.path.slice(1)} }}`;
const id = expression;
const id = `${nodeName}-${expression}`;
if (Array.isArray(schema.value)) {
const items: Renders[] = [];