Skip to content

Commit

Permalink
Hotfix: make start_at field editable
Browse files Browse the repository at this point in the history
  • Loading branch information
dorianim committed Jun 27, 2023
1 parent fb0285d commit 192d9df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions web/src/routes/manage/[id]/edit/TimerForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
const formDataToTimerData = (formData: TimerFormData): Timer => {
return {
...timerData,
start_at: new Date(`${formData.start_at_date} ${formData.start_at_time}`).getTime(),
repeat: formData.repeat,
segments: formData.segments,
display_options: {
Expand Down

0 comments on commit 192d9df

Please sign in to comment.