about summary refs log tree commit diff
path: root/app/views/stream_entries
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-01-06 20:15:24 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-01-06 20:15:24 +0100
commit72c3a41befb6407f21068ef4cb9e34187e3515f0 (patch)
treed3e8e12652eccef1d080cad7759f818cdc61e39c /app/views/stream_entries
parent8b28b82141996a2310c43834897f9c21e3ab7bc9 (diff)
Fix h-card classes and remote follow button appearing when it shouldn't
Diffstat (limited to 'app/views/stream_entries')
-rw-r--r--app/views/stream_entries/_status.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/stream_entries/_status.html.haml b/app/views/stream_entries/_status.html.haml
index eeb2fec00..29dcd6081 100644
--- a/app/views/stream_entries/_status.html.haml
+++ b/app/views/stream_entries/_status.html.haml
@@ -3,7 +3,7 @@
 - is_successor    ||= false
 - centered        ||= include_threads && !is_predecessor && !is_successor
 
-%div{ class: [is_predecessor && 'u-in-reply-to h-cite', is_successor && 'u-comment h-cite', !is_predecessor && !is_successor && 'h-entry'] }
+%div{ class: [is_predecessor ? 'u-in-reply-to h-cite' : nil, is_successor ? 'u-comment h-cite' : nil, !is_predecessor && !is_successor ? 'h-entry' : nil].compact }
   - if status.reply? && include_threads
     = render partial: 'status', collection: @ancestors, as: :status, locals: { is_predecessor: true }
 
@@ -17,7 +17,7 @@
             %strong= display_name(status.account)
           = t('stream_entries.reblogged')
 
-    %div{ class: [status.reblog? && 'u-repost-of h-cite'] }
+    %div{ class: status.reblog? ? 'u-repost-of h-cite' : nil }
       = render partial: centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status', locals: { status: proper_status(status) }
 
   - if include_threads