Fix #3371: Add CSS classes to tag categories in the split tag list.

This commit is contained in:
evazion
2017-11-14 19:51:47 -06:00
parent dc5fdf6893
commit 56bf518e6d
2 changed files with 6 additions and 6 deletions

View File

@@ -29,7 +29,7 @@ class TagSetPresenter < Presenter
typetags = typed_tags(category)
if typetags.any?
html << TagCategory.header_mapping[category]
html << "<ul>"
html << %{<ul class="#{category}-tag-list">}
typetags.each do |tag|
html << build_list_item(tag, template, options)
end