mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(editor): improve expression and parameters performance (#3874)
* fix expr perf issue * refactor a bit
This commit is contained in:
@@ -224,7 +224,7 @@ export default mixins(
|
||||
);
|
||||
},
|
||||
workflow(): Workflow {
|
||||
return this.getWorkflow();
|
||||
return this.getCurrentWorkflow();
|
||||
},
|
||||
parentNodes(): string[] {
|
||||
if (this.activeNode) {
|
||||
@@ -344,7 +344,7 @@ export default mixins(
|
||||
|
||||
this.$store.commit('ui/setNDVSessionId');
|
||||
this.$externalHooks().run('dataDisplay.nodeTypeChanged', {
|
||||
nodeSubtitle: this.getNodeSubtitle(node, this.activeNodeType, this.getWorkflow()),
|
||||
nodeSubtitle: this.getNodeSubtitle(node, this.activeNodeType, this.getCurrentWorkflow()),
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
|
||||
Reference in New Issue
Block a user