UI timezone

This commit is contained in:
2025-12-08 21:42:10 +01:00
parent 1f95d57717
commit e25cdc4441
9 changed files with 100 additions and 9 deletions

View File

@@ -26,6 +26,9 @@ public partial class Details : ComponentBase
[Inject]
private ISnackbar Snackbar { get; set; } = null!;
[Inject]
private DateTimeHelper DateTimeHelper { get; set; } = null!;
private LayerDto? layer;
private List<RecordDto> records = new();
private List<string> displayedColumns = new();
@@ -52,6 +55,7 @@ public partial class Details : ComponentBase
protected override async Task OnInitializedAsync()
{
await DateTimeHelper.InitializeAsync();
await LoadLayer();
}