From ff72d022c1ac6f0c9e2ea7a105a15748bc99d415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 8 Jan 2018 13:05:30 -0500 Subject: [PATCH] closes #6206 --- public/src/modules/helpers.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/src/modules/helpers.js b/public/src/modules/helpers.js index 07515b9834..d682faf947 100644 --- a/public/src/modules/helpers.js +++ b/public/src/modules/helpers.js @@ -127,11 +127,11 @@ category.children.forEach(function (child) { if (child && !child.isSection) { var link = child.link ? child.link : (relative_path + '/category/' + child.slug); - html += '' + - '' + - '' + - '' + - '' + child.name + ' '; + html += '' + + '
' + + '' + + '
' + + '' + child.name + '
'; } }); html = html ? ('' + html + '') : html;