Skip to content

Commit

Permalink
fix condition in temporaryExecution computed method
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoE105 committed Jul 26, 2024
1 parent ee81d71 commit e24e637
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const workflowHelpers = useWorkflowHelpers({ router: useRouter() });
const router = useRouter();
const temporaryExecution = computed(() => {
const isTemporary = props.executions.find((execution) => execution.id === props.execution?.id);
const isTemporary = !props.executions.find((execution) => execution.id === props.execution?.id);
return isTemporary ? props.execution : undefined;
});
Expand Down

0 comments on commit e24e637

Please sign in to comment.