Skip to content

Commit

Permalink
fix: workflow is_disabled (#1900)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahargl authored Sep 11, 2024
1 parent 1cf640e commit 6bee31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keep/api/routes/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def get_workflows(
last_updated=workflow.last_updated,
last_executions=last_executions,
last_execution_started=last_execution_started,
disabled=workflow.disabled,
disabled=workflow.is_disabled,
)
workflows_dto.append(workflow_dto)
return workflows_dto
Expand Down

0 comments on commit 6bee31b

Please sign in to comment.