Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #385 from SELab-2/bavverst/consistent_capitals_in_…
Browse files Browse the repository at this point in the history
…forms

some fields started with uppercase
  • Loading branch information
MaximStockmans authored May 21, 2023
2 parents a65089f + 36e8182 commit d8afaa0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export default function Form({onSubmit, setCanClose, canClose, setOpen, open, al
}}
size="small"
fullWidth
renderInput={(params) => <TextField {...params} label="Regio"/>}
renderInput={(params) => <TextField {...params} label="regio"/>}
options={allRegions}
getOptionLabel={({name}) => name}
value={formRegion}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ export default function Form(props: FormProps) {
},
}}
{...params}
label="Gebouwen"
placeholder="Gebouwen"
label="gebouwen"
placeholder="gebouwen"
/>
)}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ export default function EditUserPopup({userId, onSubmit, open, setOpen, prevFirs
<TextField
{...params}
variant="standard"
label="Gebouwen"
placeholder="Gebouwen"
label="gebouwen"
placeholder="gebouwen"
/>
)}
/>
Expand Down

0 comments on commit d8afaa0

Please sign in to comment.