From e8a82eddcae08b44c13f26fdeb229c1ce4bf5a2d Mon Sep 17 00:00:00 2001 From: Ajay Date: Thu, 9 May 2024 19:09:37 -0400 Subject: Change chapters sorting --- src/popup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup.ts b/src/popup.ts index 2f3a0d7a..2b7aa67a 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -561,7 +561,7 @@ async function runThePopup(messageListener?: MessageListener): Promise { return true; } }) - .sort((a, b) => a.segment[1] - b.segment[1]) + .sort((a, b) => b.segment[1] - a.segment[1]) .sort((a, b) => a.segment[0] - b.segment[0]); //add them as buttons to the issue reporting container -- cgit v1.2.3