From 5ba6f04bae27136430ab2a5c35c05e221538ec0c Mon Sep 17 00:00:00 2001 From: Tucker McKnight Date: Mon, 8 Feb 2021 23:11:33 -0700 Subject: Fix incorrect article sorting Currently, an article with an ID of 1000 will show up earlier than one with ID = 900, because the IDs are being treated as strings and compared alphabetically. (1 comes before 9, and the comparison stops there.) We need to parse them as integers to ensure that 900 is less than 1000. Signed-off-by: Tucker McKnight --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index c7b5cd099..c791d6534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ The format is almost based on [Keep a Changelog](https://keepachangelog.com/en/1 ### Fixed - Item list throwing error for folder and "all items" +- Articles with high IDs can be placed lower than articles with low IDs (#1147) ## [15.3.2] - 2021-02-10 No changes compared to RC2 -- cgit v1.2.3