Skip to content

Commit

Permalink
added label to select element in ManageList
Browse files Browse the repository at this point in the history
  • Loading branch information
borjaMarti committed Feb 14, 2024
1 parent 7b00c67 commit e7bb60c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/ManageList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ export function ManageList({ listPath }) {
Add item
<input type="text" name="item"></input>
</label>
<select name="time">
<label htmlFor="time-select">When do I need it?</label>
<select name="time" id="time-select">
<option value="soon">Soon</option>
<option value="soonIsh">Soon-ish</option>
<option value="notSoon">Not soon</option>
Expand Down

0 comments on commit e7bb60c

Please sign in to comment.