From 2311636a633d32efe32f005d905dc9c7fbd97c36 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Thu, 19 Feb 2026 19:42:36 +0100 Subject: [PATCH] Fix news sorting --- api/src/controllers/entries.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/controllers/entries.ts b/api/src/controllers/entries.ts index 5c1c0d80..40fe488c 100644 --- a/api/src/controllers/entries.ts +++ b/api/src/controllers/entries.ts @@ -130,7 +130,7 @@ const newsSort: Sort = { // in the news query we already filter nulls out isNullable: false, accessor: (x) => x.availableSince, - desc: false, + desc: true, }, ], };