Skip to content

Commit

Permalink
Fix unable to set enable for schedule (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
czgu authored May 28, 2020
1 parent c2cbf29 commit 4a50c35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export const DataDocScheduleForm: React.FunctionComponent<IDataDocScheduleFormPr
if (isCreateForm) {
await onCreate(cronRepr, values.kwargs);
} else {
await onUpdate(cronRepr, enabled, values.kwargs);
await onUpdate(cronRepr, values.enabled, values.kwargs);
}
}}
>
Expand Down

0 comments on commit 4a50c35

Please sign in to comment.