summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/assets/js/lib/views/index/threadbox.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/assets/js/lib/views/index/threadbox.js b/public/assets/js/lib/views/index/threadbox.js
index c6acc21..46ba9de 100644
--- a/public/assets/js/lib/views/index/threadbox.js
+++ b/public/assets/js/lib/views/index/threadbox.js
@@ -41,7 +41,7 @@ var ThreadBox = View.extend({
Object.keys(keywords).sort().forEach((keyword) => {
this.appendKeyword({ keyword })
this.appendThreads(keywords[keyword].sort( (a,b) => {
- return b.lastmodified - a.lastmodified
+ return a.title.localeCompare(b.title) // b.lastmodified - a.lastmodified
}))
})
}