Skip to content

Commit

Permalink
Contact: Changed Resistance Dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
biermapa authored and biermapa committed Jun 3, 2022
1 parent 945d976 commit 36ad5d2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions SmICSWebApp/Pages/Contact/Contact.razor
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,17 @@
}
</select>
<label for="res">Resistenz:</label>
<input type="text" id="res" list="resistanceList" @bind="contact.Resistence" />
<datalist id="resistanceList">
<select id="res" class="col-2 mr-2" @bind="contact.Resistence">
<option value="" selected disabled hidden>Bitte wählen</option>
<option value="keine">keine</option>
@if (_filterMRE is not null)
{
@foreach (string filter in _filterMRE)
{
<option value="@filter">@filter</option>
}
}
</datalist>
</select>
<button type="submit" class="btn btn-outline-primary"><i class="oi oi-magnifying-glass"></i></button>
</EditForm>
</div>
Expand Down

0 comments on commit 36ad5d2

Please sign in to comment.