From e48e8b6394b982c83f8074be1032c94b68cd6d80 Mon Sep 17 00:00:00 2001 From: Penry Date: Fri, 13 Feb 2026 19:42:25 +0100 Subject: [PATCH] feat: changed the GlobalEntity Sort Attribute to CreationTime --- CouchLog/Components/Pages/GlobalList.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CouchLog/Components/Pages/GlobalList.razor b/CouchLog/Components/Pages/GlobalList.razor index 1da0730..9b3eda0 100644 --- a/CouchLog/Components/Pages/GlobalList.razor +++ b/CouchLog/Components/Pages/GlobalList.razor @@ -159,7 +159,7 @@ /// protected override async Task OnInitializedAsync() { - GlobalEntities = await CouchLogDB.GlobalEntities.OrderByDescending(Entity => Entity.Title).ToListAsync(); + GlobalEntities = await CouchLogDB.GlobalEntities.OrderByDescending(Entity => Entity.CreationTime).ToListAsync(); MediaTypes = await CouchLogDB.MediaType.OrderBy(Type => Type.Id).ToListAsync(); Genres = await CouchLogDB.Genres.OrderBy(Genre => Genre.Name).ToListAsync();