Compare commits
No commits in common. "7af5fb909e3798e3f827fb18d4ac67bf1b11edea" and "398897d9be4b252cb9347b6b73fc39a1377c3de1" have entirely different histories.
7af5fb909e
...
398897d9be
|
|
@ -23,7 +23,6 @@
|
|||
<MudCheckBox @bind-Value="_circle" Label="Kranz" Color="Color.Primary" />
|
||||
<MudCheckBox @bind-Value="_bell" Label="Glocke" Color="Color.Warning" />
|
||||
<MudCheckBox @bind-Value="_gutter" Label="Rinne" Color="Color.Error" />
|
||||
<MudCheckBox @bind-Value="_noWood" Label="kein Holz" Color="Color.Tertiary" />
|
||||
</MudStack>
|
||||
|
||||
<MudTextField @bind-Value="_description"
|
||||
|
|
|
|||
|
|
@ -13,15 +13,13 @@
|
|||
<MudSelect T="int" @bind-Value="_selectedMonth" Label="Monat" Style="width: 150px;">
|
||||
@for (int m = 1; m <= 12; m++)
|
||||
{
|
||||
var month = m;
|
||||
<MudSelectItem Value="@month">@GetMonthName(month)</MudSelectItem>
|
||||
<MudSelectItem Value="@m">@GetMonthName(m)</MudSelectItem>
|
||||
}
|
||||
</MudSelect>
|
||||
<MudSelect T="int" @bind-Value="_selectedYear" Label="Jahr" Style="width: 120px;">
|
||||
@for (int y = DateTime.Today.Year; y >= DateTime.Today.Year - 2; y--)
|
||||
{
|
||||
var year = y;
|
||||
<MudSelectItem Value="@year">@year</MudSelectItem>
|
||||
<MudSelectItem Value="@y">@y</MudSelectItem>
|
||||
}
|
||||
</MudSelect>
|
||||
</MudStack>
|
||||
|
|
|
|||
Loading…
Reference in New Issue