Skip to content

Commit

Permalink
fixed min check for iep end date (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
katconnors authored Jun 4, 2024
1 parent 9f0eb8b commit 2380aaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/students/[student_id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ const ViewStudentPage = () => {
type="date"
name="end_date"
defaultValue={endDate}
inputProps={{ min: { startDate } }}
inputProps={{ min: startDate }}
required
/>
</Container>
Expand Down

0 comments on commit 2380aaf

Please sign in to comment.