Skip to content

Commit

Permalink
feat: adjusted grade field validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Inferato committed Oct 23, 2023
1 parent 62656ce commit 8a3987e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const AdjustedGradeInput = () => {
type="number"
name="adjustedGradeValue"
min="0"
max={possibleGrade ? possibleGrade : ''}
max={possibleGrade || ''}
value={value}
onChange={onChange}
/>
Expand Down

0 comments on commit 8a3987e

Please sign in to comment.