Skip to content

Commit

Permalink
fix: fix sentry error
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Oct 23, 2024
1 parent e6b2f8e commit e0bc5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/components/Node.vue
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ const nodeClass = computed(() => {
const nodeExecutionStatus = computed(() => {
const nodeExecutionRunData = workflowsStore.getWorkflowRunData?.[props.name];
if (nodeExecutionRunData) {
return nodeExecutionRunData.filter(Boolean)[0]?.executionStatus ?? '';
return nodeExecutionRunData.filter(Boolean)?.[0]?.executionStatus ?? '';
}
return '';
});
Expand Down

0 comments on commit e0bc5e4

Please sign in to comment.