Fix regression bugs (#334)

This commit is contained in:
Hisham Bin Ateya
2020-04-03 23:37:02 +03:00
committed by GitHub
parent d8b15e7a4e
commit 6fa2a38f36
5 changed files with 14 additions and 14 deletions

View File

@ -39,7 +39,7 @@
</td>
<td>
<select class="form-control" @onchange="(e => ThemeChanged(e))">
<option value=string.Empty>&lt;Select Theme&gt;</option>
<option value="">&lt;Select Theme&gt;</option>
@foreach (KeyValuePair<string, string> item in _themes)
{
if (item.Key == _themetype)
@ -60,7 +60,7 @@
</td>
<td>
<select class="form-control" @bind="@_layouttype">
<option value=string.Empty>&lt;Select Layout&gt;</option>
<option value="">&lt;Select Layout&gt;</option>
@foreach (KeyValuePair<string, string> panelayout in _panelayouts)
{
<option value="@panelayout.Key">@panelayout.Value</option>
@ -74,7 +74,7 @@
</td>
<td>
<select class="form-control" @bind="@_containertype">
<option value=string.Empty>&lt;Select Container&gt;</option>
<option value="">&lt;Select Container&gt;</option>
@foreach (KeyValuePair<string, string> container in _containers)
{
<option value="@container.Key">@container.Value</option>