diff --git a/extensions/tags/js/bootstrap.js b/extensions/tags/js/bootstrap.js index 8d3ac42d2..474954cc8 100644 --- a/extensions/tags/js/bootstrap.js +++ b/extensions/tags/js/bootstrap.js @@ -134,7 +134,11 @@ app.initializers.add('categories', function() { extend(DiscussionHero.prototype, 'items', function(items) { var category = this.props.discussion.category(); if (category) { - items.add('category', categoryLabel(category), {before: 'title'}); + items.add('category', m('a', { + href: app.route('category', {categories: category.slug()}), + config: m.route + }, categoryLabel(category)), {before: 'title'}); + items.title.content.wrapperClass = 'block-item'; } });