From 2f738071073b231c6a2bf343de35ace5b7933d15 Mon Sep 17 00:00:00 2001 From: Anil Mandepudi Date: Fri, 29 Jul 2016 12:00:21 -0700 Subject: [PATCH] add missing comma --- public/src/client/category.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/src/client/category.js b/public/src/client/category.js index b175450a1a..98d0063b4b 100644 --- a/public/src/client/category.js +++ b/public/src/client/category.js @@ -196,7 +196,7 @@ define('forum/category', [ templates.parse('category', 'topics', { privileges: {editable: editable}, showSelect: editable, - topics: [topic] + topics: [topic], template: {category: true} }, function(html) { translator.translate(html, function(translatedHTML) { @@ -348,4 +348,4 @@ define('forum/category', [ }; return Category; -}); \ No newline at end of file +});