diff options
author | Eugen <eugen@zeonfederated.com> | 2017-04-13 19:36:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-13 19:36:41 +0200 |
commit | ac54da939413836733e30627def9ca645d3735d4 (patch) | |
tree | c6f13821b0fe13fd9cb44f8dc30f329b9df286c4 /app/lib | |
parent | 043862f4118a9ee5e6708ff9c144fa9e668ee06d (diff) |
Fix #1220, fix #1671 - Hook up comment box to the Redux comment value (#1699)
Fix username styling regression introduced in #1063 Fix report screen background regression introduced in #1415
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/formatter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb index 64349e68e..64b1f86d4 100644 --- a/app/lib/formatter.rb +++ b/app/lib/formatter.rb @@ -96,6 +96,6 @@ class Formatter end def mention_html(match, account) - "#{match.split('@').first}<span class=\"h-card\"><a href=\"#{TagManager.instance.url_for(account)}\" class=\"u-url mention\">@#{account.username}</a></span>" + "#{match.split('@').first}<span class=\"h-card\"><a href=\"#{TagManager.instance.url_for(account)}\" class=\"u-url mention\">@<span>#{account.username}</span></a></span>" end end |