sort legacy as last category

This commit is contained in:
MrOtherGuy 2020-06-05 09:37:49 +03:00
parent 93fd524b57
commit 3a5891fdfe

View file

@ -133,12 +133,12 @@ function createCategories(){
ret[++i]=item;
ns[i]=0;
}else{
ns[i]++
ns[i] += (item === "legacy") ? 0 : 1;
}
}
let map = ret.map((a,i)=>({name:a,value:ns[i]}))
return map.sort((a,b)=>(a.name==="legacy"?2:a.value > b.value?-1:a.value < b.value ? 1:0))
return map.sort((a,b)=>(:a.value > b.value?-1:a.value < b.value ? 1:0))
})();
for(let cat of CAT_NAMES){