added EventType to raid

This commit is contained in:
Sarah Faey 2022-12-03 17:59:29 +01:00
parent de3a6a9f83
commit f0ef990993
7 changed files with 778 additions and 8 deletions

View file

@ -46,6 +46,17 @@
</InputSelect>
</label>
</p>
<p>
<label>
Event Type:
<InputSelect @bind-Value="_raid.EventType">
@foreach (EventType eventType in (EventType[]) Enum.GetValues(typeof(EventType)))
{
<option value="@eventType">@eventType.ToString()</option>
}
</InputSelect>
</label>
</p>
<p>
<label>

View file

@ -47,6 +47,17 @@
</InputSelect>
</label>
</p>
<p>
<label>
Event Type:
<InputSelect @bind-Value="_template.EventType">
@foreach (EventType eventType in (EventType[]) Enum.GetValues(typeof(EventType)))
{
<option value="@eventType">@eventType.ToString()</option>
}
</InputSelect>
</label>
</p>
<p>
<label>