[Posts] Fix missing space next to tag names

Unintentionally removed in 2609990837
This commit is contained in:
Earlopain 2024-04-03 14:45:39 +02:00
parent 3f3fd0ab4f
commit d5c371dccf
No known key found for this signature in database
GPG Key ID: 48860312319ADF61

View File

@ -171,6 +171,6 @@ class TagSetPresenter < Presenter
def tag_link(tag, link_text = tag.name, link_type = :tag)
link = link_type == :wiki_page ? show_or_new_wiki_pages_path(title: tag.name) : posts_path(tags: tag.name)
itemprop = 'itemprop="author"' if tag.category == Tag.categories.artist
%(<a rel="nofollow" class="search-tag" #{itemprop} href="#{link}">#{h(link_text)}</a>)
%(<a rel="nofollow" class="search-tag" #{itemprop} href="#{link}">#{h(link_text)}</a> )
end
end