Skip to content

Commit

Permalink
Removes min and max requirements for start time
Browse files Browse the repository at this point in the history
  • Loading branch information
MTrost committed Sep 19, 2024
1 parent fb2e04e commit 1ebc448
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/co/gaiwan/compass/html/sessions.clj
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,7 @@
(str (time/local-date (:session/time session)))
(str (java.time.LocalDate/now)))}]
[:input (cond->
{:id "start-time" :name "start-time" :type "time"
:min "06:00" :max "23:00" :required true
:step 60}
{:id "start-time" :name "start-time" :type "time" :required true :step 60}
session
(assoc :value
(str (time/local-time (:session/time session)))))]]
Expand Down

0 comments on commit 1ebc448

Please sign in to comment.