subsort WI Depth sort by Order to match prompt loc

This commit is contained in:
RossAscends
2023-10-08 20:12:14 +09:00
parent 2cbde8b55c
commit 19acc05516

View File

@@ -274,7 +274,7 @@ function sortEntries(data) {
// Sort numbers
return orderSign * (Number(aValue) - Number(bValue));
};
const secondarySort = (a, b) => b.order - a.order;
const secondarySort = (a, b) => a.order - b.order;
const tertiarySort = (a, b) => a.uid - b.uid;
data.sort((a, b) => {