Compare commits

..

1 commit

Author SHA1 Message Date
Max
a815a61460 changed date display in archive to dmy 2024-05-17 03:35:54 +02:00

View file

@ -18,7 +18,7 @@
<QuickGrid Pagination="Pagination" Items="@ArchiveService.GetAllEntries().AsQueryable()">
@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)
{