fix: Show Execute Workflow node in nodes panel (#5583)

* fix: Show Execute Workflow node in nodes panel

* chore: remove wrong comment
This commit is contained in:
Mutasem Aldmour
2023-02-28 17:51:33 +03:00
committed by GitHub
parent e3ef9f7c7b
commit d6d1c07a53
3 changed files with 31 additions and 2 deletions

View File

@@ -320,7 +320,7 @@ export const useNodeCreatorStore = defineStore(STORES.NODE_CREATOR, {
.reduce((acc: Record<string, INodeTypeDescription>, node: INodeTypeDescription) => {
const clonedNode = deepCopy(node);
const actions = node.actions || [];
// Do not merge core nodes
const normalizedName = node.name.toLowerCase().replace('trigger', '');
const existingNode = acc[normalizedName];