| Level Navigation: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19⚡ | 20 |
Goal: Replace the text input for dish type with a dropdown for better data consistency.
User Story: As a user, I want to select from predefined dish types so that the data is consistent and easier to filter.
Replace the “Kind of Dish” text input with a select dropdown containing predefined options.
defaultValue="" on the select elementNeed help with select dropdown? Check out these snippets:
<label>
Kind of Dish:
<select name="kindOfDish" defaultValue="">
<option value="" disabled>Select a kind</option>
<option value="entree">Entree</option>
<option value="side">Side</option>
<option value="snack">Snack</option>
<option value="dessert">Dessert</option>
<option value="drink">Drink</option>
</select>
</label>