Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase minimum input for deadline input to 1 as 0 leads to 400 error #817

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading