Skip to content

Commit

Permalink
Fix types in spacetime modal edit
Browse files Browse the repository at this point in the history
  • Loading branch information
smartspot2 committed Sep 14, 2023
1 parent ad5844a commit 0af4cb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const SpaceTimeEditModal = ({
Day
<select
className="form-select"
onChange={e => setDay(e.target.value)}
onChange={e => setDay(parseInt(e.target.value))}
required={!!isPermanent}
name="day"
disabled={!isPermanent}
Expand Down

0 comments on commit 0af4cb6

Please sign in to comment.