We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents baa8f35 + 1628e67 commit 6de861dCopy full SHA for 6de861d
1 file changed
src/CodeBreaker.Blazor.Client/Pages/ReportsPage.razor.cs
@@ -13,7 +13,7 @@ public partial class ReportsPage
13
{
14
private GameInfo[]? _games;
15
private bool _isLoadingGames = false;
16
- private DateTime? _selectedDate;
+ private DateTime? _selectedDate = DateTime.Now;
17
18
[Inject] private IDialogService DialogService { get; set; } = default!;
19
@@ -27,7 +27,7 @@ public partial class ReportsPage
27
28
public async Task GetGamesAsync()
29
30
- var date = _selectedDate.ToDateOnly(); ;
+ var date = _selectedDate.ToDateOnly();
31
Logger?.LogInformation("Calling GetReport for {date}", date);
32
_games = null;
33
_isLoadingGames = true;
0 commit comments