diff --git a/extensions/tags/js/src/common/helpers/tagLabel.js b/extensions/tags/js/src/common/helpers/tagLabel.js index d3a82b39c..462d25bbe 100644 --- a/extensions/tags/js/src/common/helpers/tagLabel.js +++ b/extensions/tags/js/src/common/helpers/tagLabel.js @@ -20,6 +20,10 @@ export default function tagLabel(tag, attrs = {}) { attrs.title = tag.description() || ''; attrs.href = app.route('tag', {tags: tag.slug()}); } + + if (tag.isChild()) { + attrs.className += ' TagLabel--child'; + } } else { attrs.className += ' untagged'; }