mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(editor): Fix expanding schema items with same names on NDV (#14673)
This commit is contained in:
@@ -380,7 +380,7 @@ export const useFlattenSchema = () => {
|
|||||||
|
|
||||||
const expression = `{{ ${expressionPrefix ? expressionPrefix + schema.path : schema.path.slice(1)} }}`;
|
const expression = `{{ ${expressionPrefix ? expressionPrefix + schema.path : schema.path.slice(1)} }}`;
|
||||||
|
|
||||||
const id = expression;
|
const id = `${nodeName}-${expression}`;
|
||||||
|
|
||||||
if (Array.isArray(schema.value)) {
|
if (Array.isArray(schema.value)) {
|
||||||
const items: Renders[] = [];
|
const items: Renders[] = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user