Skip to content

Commit

Permalink
⚡ setting access fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-radency committed Mar 7, 2024
1 parent 48dd116 commit 7b7b55a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/editor-ui/src/views/NodeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ export default defineComponent({
TelemetryHelpers.generateNodesGraph(
workflowData as IWorkflowBase,
this.workflowHelpers.getNodeTypes(),
{ isCloudDeployment: settingsStore.isCloudDeployment },
{ isCloudDeployment: this.settingsStore.isCloudDeployment },
).nodeGraph,
),
};
Expand Down Expand Up @@ -1992,7 +1992,7 @@ export default defineComponent({
TelemetryHelpers.generateNodesGraph(
workflowData as IWorkflowBase,
this.workflowHelpers.getNodeTypes(),
{ isCloudDeployment: settingsStore.isCloudDeployment },
{ isCloudDeployment: this.settingsStore.isCloudDeployment },
).nodeGraph,
),
};
Expand Down Expand Up @@ -2149,7 +2149,7 @@ export default defineComponent({
workflowData.meta && workflowData.meta.instanceId !== currInstanceId
? workflowData.meta.instanceId
: '',
isCloudDeployment: settingsStore.isCloudDeployment,
isCloudDeployment: this.settingsStore.isCloudDeployment,
},
).nodeGraph,
);
Expand Down

0 comments on commit 7b7b55a

Please sign in to comment.