mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-24 00:09:41 +01:00
category recent post fix
if a category is not displaying any recent posts dont render new posts
This commit is contained in:
@@ -41,7 +41,7 @@ define('forum/home', function() {
|
||||
var category = $('.home .category-item[data-cid="' + cid + '"]');
|
||||
var categoryBox = category.find('.category-box');
|
||||
var numRecentReplies = category.attr('data-numRecentReplies');
|
||||
if (!numRecentReplies) {
|
||||
if (!numRecentReplies || !parseInt(numRecentReplies, 10)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user