diff --git a/public/src/modules/helpers.common.js b/public/src/modules/helpers.common.js
index a4b77c0802..a33e7af8c7 100644
--- a/public/src/modules/helpers.common.js
+++ b/public/src/modules/helpers.common.js
@@ -113,7 +113,7 @@ module.exports = function (utils, Benchpress, relative_path) {
}
const href = tag === 'a' ? `href="${relative_path}/category/${category.slug}"` : '';
- return `<${tag} ${href} component="topic/category" class="badge px-1 text-truncate text-decoration-none ${className}" style="color: ${category.color};background-color: ${category.bgColor};border-color: ${category.bgColor}!important; max-width: 70vw;">
+ return `<${tag} component="topic/category" ${href} class="badge px-1 text-truncate text-decoration-none ${className}" style="color: ${category.color};background-color: ${category.bgColor};border-color: ${category.bgColor}!important; max-width: 70vw;">
${category.icon && category.icon !== 'fa-nbb-none' ? `` : ''}
${category.name}
${tag}>`;
diff --git a/test/template-helpers.js b/test/template-helpers.js
index b0bbb334c5..ea4d142354 100644
--- a/test/template-helpers.js
+++ b/test/template-helpers.js
@@ -107,7 +107,7 @@ describe('helpers', () => {
imageClass: 'auto',
name: 'Category 1',
}, 'a', ''),
- `\n\t\t\t\n\t\t\tCategory 1\n\t\t`
+ `\n\t\t\t\n\t\t\tCategory 1\n\t\t`
);
assert.strictEqual(
helpers.buildCategoryLabel({
@@ -118,7 +118,7 @@ describe('helpers', () => {
name: 'Category 1',
icon: 'fa-book',
}, 'span', 'rounded-1'),
- `\n\t\t\t\n\t\t\tCategory 1\n\t\t`,
+ `\n\t\t\t\n\t\t\tCategory 1\n\t\t`,
);
done();
});