Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wkramer committed Dec 20, 2024
1 parent 90d311c commit b47561c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/workflows/WorkflowsControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,7 @@ const workflowDescription = computed<string>(() => {
const workflow = availableWorkflowsStore.byId(
currentWorkflow.value.secondaryWorkflowId,
)
return workflow.description !== ''
? workflow.description
: ''
return workflow.description !== '' ? workflow.description : ''
})
const data = ref<WorkflowFormData>({})
Expand Down

0 comments on commit b47561c

Please sign in to comment.