Change chapters sorting

This commit is contained in:
Ajay
2024-05-09 19:09:37 -04:00
parent 3be51c89a9
commit e8a82eddca

View File

@@ -561,7 +561,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
return true; 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]); .sort((a, b) => a.segment[0] - b.segment[0]);
//add them as buttons to the issue reporting container //add them as buttons to the issue reporting container