summaryrefslogtreecommitdiff
path: root/public/assets/js/lib/views/index/threadbox.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets/js/lib/views/index/threadbox.js')
-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 6efce22..79dc4bc 100644
--- a/public/assets/js/lib/views/index/threadbox.js
+++ b/public/assets/js/lib/views/index/threadbox.js
@@ -25,7 +25,7 @@ var ThreadBox = View.extend({
return b.lastmodified - a.lastmodified
}).slice(0, 15)
this.appendThreads(latest)
- data.threads = data.threads.filter((thread) => thread && !! thread.keyword)
+ data.threads = data.threads.slice(15).filter((thread) => thread && !! thread.keyword)
}
var keywords = {}
data.threads.forEach((thread) => {