changed date display in archive to dmy

This commit is contained in:
Max 2024-05-17 03:35:54 +02:00
parent 810a35e646
commit a815a61460

View file

@ -18,7 +18,7 @@
<QuickGrid Pagination="Pagination" Items="@ArchiveService.GetAllEntries().AsQueryable()"> <QuickGrid Pagination="Pagination" Items="@ArchiveService.GetAllEntries().AsQueryable()">
@if (ShowDate) @if (ShowDate)
{ {
<PropertyColumn Property="@(e => e.date)" Format="yyyy.MM.dd" Sortable="true" InitialSortDirection="SortDirection.Descending" IsDefaultSortColumn="true" /> <PropertyColumn Property="@(e => e.date)" Format="dd.MM.yyyy" Sortable="true" InitialSortDirection="SortDirection.Descending" IsDefaultSortColumn="true" />
} }
@if (ShowPizzaTotal) @if (ShowPizzaTotal)
{ {