1
0
mirror of synced 2025-02-07 15:01:25 +01:00

Fix problem with mobile view time selection

This commit is contained in:
S-Sebb 2023-11-13 14:38:10 +00:00
parent b612c56f5b
commit 3fc8134d5b

View File

@ -26,13 +26,7 @@ else
@if (LoginService.RegisterWithLastPlayTime) @if (LoginService.RegisterWithLastPlayTime)
{ {
<MudDatePicker @ref="datePicker" Label="Last Play Date" @bind-Date="date" AutoClose="true"/> <MudDatePicker @ref="datePicker" Label="Last Play Date" @bind-Date="date" AutoClose="true"/>
<MudTimePicker @ref="timePicker" AmPm="true" Label="Last Play Time(5 min within when credit ended)" @bind-Time="time" AutoClose="false"> <MudTimePicker @ref="timePicker" AmPm="true" Label="Last Play Time(5 min around credit end)" @bind-Time="time" AutoClose="true"/>
<PickerActions>
<MudButton Class="mr-auto align-self-start" OnClick="@(() => timePicker.Clear())">Clear</MudButton>
<MudButton OnClick="@(() => timePicker.Close(false))">Cancel</MudButton>
<MudButton Color="Color.Primary" OnClick="@(() => timePicker.Close())">Ok</MudButton>
</PickerActions>
</MudTimePicker>
} }
<MudTextField @bind-Value="password" InputType="InputType.Password" <MudTextField @bind-Value="password" InputType="InputType.Password"
T="string" FullWidth="true" Required="@true" T="string" FullWidth="true" Required="@true"