mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
fix: More hints to nodes - regression for sub nodes (no-changelog) (#10690)
This commit is contained in:
parent
1dea8f4c7d
commit
37a808896e
|
@ -645,6 +645,7 @@ export default defineComponent({
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
getNodeHints(): NodeHint[] {
|
getNodeHints(): NodeHint[] {
|
||||||
|
try {
|
||||||
if (this.node && this.nodeType) {
|
if (this.node && this.nodeType) {
|
||||||
const workflowNode = this.workflow.getNode(this.node.name);
|
const workflowNode = this.workflow.getNode(this.node.name);
|
||||||
|
|
||||||
|
@ -661,7 +662,7 @@ export default defineComponent({
|
||||||
this.parentNodeOutputData.length > 1 || this.parentNodePinnedData.length > 1;
|
this.parentNodeOutputData.length > 1 || this.parentNodePinnedData.length > 1;
|
||||||
|
|
||||||
const nodeOutputData =
|
const nodeOutputData =
|
||||||
this.workflowRunData?.[this.node.name]?.[this.runIndex]?.data?.main[0] || [];
|
this.workflowRunData?.[this.node.name]?.[this.runIndex]?.data?.main?.[0] || [];
|
||||||
|
|
||||||
const genericHints = getGenericHints({
|
const genericHints = getGenericHints({
|
||||||
workflowNode,
|
workflowNode,
|
||||||
|
@ -673,9 +674,15 @@ export default defineComponent({
|
||||||
hasMultipleInputItems,
|
hasMultipleInputItems,
|
||||||
});
|
});
|
||||||
|
|
||||||
return executionHints.concat(nodeHints, genericHints).filter(this.shouldHintBeDisplayed);
|
return executionHints
|
||||||
|
.concat(nodeHints, genericHints)
|
||||||
|
.filter(this.shouldHintBeDisplayed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error while getting node hints', error);
|
||||||
|
}
|
||||||
|
|
||||||
return [];
|
return [];
|
||||||
},
|
},
|
||||||
onItemHover(itemIndex: number | null) {
|
onItemHover(itemIndex: number | null) {
|
||||||
|
|
Loading…
Reference in a new issue