From ac54da939413836733e30627def9ca645d3735d4 Mon Sep 17 00:00:00 2001 From: Eugen Date: Thu, 13 Apr 2017 19:36:41 +0200 Subject: 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 --- app/lib/formatter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/lib') 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}@#{account.username}" + "#{match.split('@').first}@#{account.username}" end end -- cgit