Skip to content

Commit

Permalink
Increase minimum input for deadline input to 1 as 0 leads mto 404 errors
Browse files Browse the repository at this point in the history
Similar STRs to okfde#816, but if you enter `0` in that input box and press the button, you get a 404 error. 🙃
  • Loading branch information
rugk authored Aug 22, 2024
1 parent d0da260 commit e176845
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ <h3 class="h5 info-box__title">{{ object.readable_status }}</h3>
<div class="input-group input-group-sm mb-1">
<input class="form-control"
type="number"
min="0"
min="1"
max="15"
name="time"
value="1">
Expand Down

0 comments on commit e176845

Please sign in to comment.