#11 - Fix banner sorting

This commit is contained in:
2022-09-28 19:48:51 +02:00
parent 6c3acfe5e9
commit 3b12ce1786
6 changed files with 14 additions and 101 deletions
+1 -1
View File
@@ -66,5 +66,5 @@ function resortGroup(group) {
}
function compareEle(a, b) {
return a.views >= b.views;
return a.views - b.views;
}