summaryrefslogtreecommitdiffstats
path: root/interface
diff options
context:
space:
mode:
Diffstat (limited to 'interface')
-rw-r--r--interface/js/app/history.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js
index 2807bac41..d3dc0873f 100644
--- a/interface/js/app/history.js
+++ b/interface/js/app/history.js
@@ -123,7 +123,7 @@ define(["jquery", "footable", "humanize"],
}
var compare = (getSelector("selSymOrder") === "score")
? function (e1, e2) {
- return Math.abs(e1.score) < Math.abs(e2.score);
+ return Math.abs(e2.score) - Math.abs(e1.score);
}
: function (e1, e2) {
return e1.name.localeCompare(e2.name);