|
27 | 27 | <div class="mb-2"> |
28 | 28 | <label class="form-label" for="nvPreset">NVIDIA preset</label> |
29 | 29 | <select class="form-select" id="nvPreset" @bind="NvPresetToAddId"> |
30 | | - <option value="null">Select preset</option> |
| 30 | + <option value="">Select preset</option> |
31 | 31 | @foreach (var preset in NvPresets) |
32 | 32 | { |
33 | 33 | <option value="@preset.id">@preset.IdOrName</option> |
|
40 | 40 | <div class="mb-2"> |
41 | 41 | <label class="form-label" for="samsungPreset">Samsung preset</label> |
42 | 42 | <select class="form-select" id="samsungPreset" @bind="SamsungPresetToAddId"> |
43 | | - <option value="null">Select preset</option> |
| 43 | + <option value="">Select preset</option> |
44 | 44 | @foreach (var preset in SamsungPresets) |
45 | 45 | { |
46 | 46 | <option value="@preset.id">@preset.IdOrName</option> |
|
53 | 53 | <div class="mb-2"> |
54 | 54 | <label class="form-label" for="lgPreset">LG preset</label> |
55 | 55 | <select class="form-select" id="lgPreset" @bind="LgPresetToAddId"> |
56 | | - <option value="null">Select preset</option> |
| 56 | + <option value="">Select preset</option> |
57 | 57 | @foreach (var preset in LgPresets) |
58 | 58 | { |
59 | 59 | <option value="@preset.id">@preset.IdOrName</option> |
|
68 | 68 | <div class="mb-2"> |
69 | 69 | <label class="form-label" for="customItem">@customItem.Name</label> |
70 | 70 | <select class="form-select" id="customItem" @bind="customItem.SelectedItem"> |
71 | | - <option value="null">Select item</option> |
| 71 | + <option value="">Select item</option> |
72 | 72 | @foreach (var item in customItem.Items) |
73 | 73 | { |
74 | 74 | <option value="@item">@item</option> |
|
84 | 84 | <div class="mb-2"> |
85 | 85 | <label class="form-label" for="advancedCustomItem">@customItem.Name</label> |
86 | 86 | <select class="form-select" id="advancedCustomItem" @bind="customItem.SelectedActionName" @bind:after="() => AdvancedItemChanged(customItem)"> |
87 | | - <option value="null">Select action</option> |
| 87 | + <option value="">Select action</option> |
88 | 88 | @foreach (var keyValue in customItem.GroupedActions) |
89 | 89 | { |
90 | 90 | <optgroup label="@keyValue.Key"> |
|
0 commit comments