Merge pull request #3105 from evazion/fix-versions-diffs

Fix missing spaces between tags on /post_versions
This commit is contained in:
Albert Yi
2017-06-05 11:45:50 -07:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ module ArtistVersionsHelper
end
diff[:unchanged_names].each do |name|
html << '<span>' + h(name) + '</span>'
html << " "
end
html << "</span>"

View File

@@ -13,6 +13,7 @@ module PostVersionsHelper
end
diff[:unchanged_tags].each do |tag|
html << '<span>' + link_to(wordbreakify(tag), posts_path(:tags => tag)) + '</span>'
html << " "
end
html << "</span>"