mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
⬆️ Update packages to latest version on n8n-editor-ui
This commit is contained in:
@@ -190,7 +190,7 @@ export default mixins(
|
||||
key: fullpath,
|
||||
allowParentSelect: true,
|
||||
dataType: 'array',
|
||||
} as IVariableSelectorOption
|
||||
} as IVariableSelectorOption,
|
||||
);
|
||||
} else if (typeof inputData === 'object') {
|
||||
const tempValue: IVariableSelectorOption[] = [];
|
||||
@@ -207,7 +207,7 @@ export default mixins(
|
||||
key: fullpath,
|
||||
allowParentSelect: true,
|
||||
dataType: 'object',
|
||||
} as IVariableSelectorOption
|
||||
} as IVariableSelectorOption,
|
||||
);
|
||||
}
|
||||
} else {
|
||||
@@ -222,7 +222,7 @@ export default mixins(
|
||||
name: propertyName,
|
||||
key: fullpath,
|
||||
value: inputData,
|
||||
} as IVariableSelectorOption
|
||||
} as IVariableSelectorOption,
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -294,7 +294,7 @@ export default mixins(
|
||||
{
|
||||
name: 'JSON',
|
||||
options: this.sortOptions(jsonDataOptions),
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -321,7 +321,7 @@ export default mixins(
|
||||
name: propertyName,
|
||||
key: `$node["${nodeName}"].binary.${dataPropertyName}.${propertyName}`,
|
||||
value: outputData.binary![dataPropertyName][propertyName],
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
@@ -332,7 +332,7 @@ export default mixins(
|
||||
key: `$node["${nodeName}"].binary.${dataPropertyName}`,
|
||||
options: this.sortOptions(binaryPropertyData),
|
||||
allowParentSelect: true,
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -343,7 +343,7 @@ export default mixins(
|
||||
key: `$node["${nodeName}"].binary`,
|
||||
options: this.sortOptions(binaryData),
|
||||
allowParentSelect: true,
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -476,7 +476,7 @@ export default mixins(
|
||||
{
|
||||
name: 'Input Data',
|
||||
options: this.sortOptions(tempOutputData),
|
||||
}
|
||||
},
|
||||
);
|
||||
} else {
|
||||
// Data is to large so do not add
|
||||
@@ -488,7 +488,7 @@ export default mixins(
|
||||
name: '[Data to large]',
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -504,14 +504,14 @@ export default mixins(
|
||||
{
|
||||
name: 'Parameters',
|
||||
options: this.sortOptions(this.getNodeParameters(activeNode.name, initialPath, skipParameter, filterText) as IVariableSelectorOption[]),
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
returnData.push(
|
||||
{
|
||||
name: 'Current Node',
|
||||
options: this.sortOptions(currentNodeData),
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
// Add the input data
|
||||
@@ -562,7 +562,7 @@ export default mixins(
|
||||
{
|
||||
name: 'Output Data',
|
||||
options: this.sortOptions(tempOutputData),
|
||||
} as IVariableSelectorOption
|
||||
} as IVariableSelectorOption,
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -571,7 +571,7 @@ export default mixins(
|
||||
{
|
||||
name: nodeName,
|
||||
options: this.sortOptions(nodeOptions),
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
@@ -579,7 +579,7 @@ export default mixins(
|
||||
{
|
||||
name: 'Nodes',
|
||||
options: this.sortOptions(allNodesData),
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
// Remove empty entries and return
|
||||
|
||||
Reference in New Issue
Block a user