added EventType to raid
This commit is contained in:
parent
de3a6a9f83
commit
f0ef990993
7 changed files with 778 additions and 8 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue