Skip to content

Commit

Permalink
add required prop (#1660)
Browse files Browse the repository at this point in the history
  • Loading branch information
djnunez-aot authored Jan 12, 2024
1 parent 9b7f974 commit f663ca5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epictrack-web/src/components/project/ProjectForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ export default function ProjectForm({ ...props }) {
/>
</Grid>
<Grid item xs={6}>
<ETFormLabel>Latitude</ETFormLabel>
<ETFormLabel required>Latitude</ETFormLabel>
<ControlledTextField
name="latitude"
type="number"
Expand All @@ -346,7 +346,7 @@ export default function ProjectForm({ ...props }) {
/>
</Grid>
<Grid item xs={6}>
<ETFormLabel>Longitude</ETFormLabel>
<ETFormLabel required>Longitude</ETFormLabel>
<ControlledTextField
name="longitude"
type="number"
Expand Down

0 comments on commit f663ca5

Please sign in to comment.