diff options
author | pluralcafe-docker <git@plural.cafe> | 2018-12-05 03:57:34 +0000 |
---|---|---|
committer | pluralcafe-docker <git@plural.cafe> | 2018-12-05 03:57:34 +0000 |
commit | a2cb6e3996f4e8f7775557e84c9e242d937f8f0c (patch) | |
tree | fc7eadfed7d3d36ea158c9a7bd971b24a4e8ce18 /app/views/stream_entries/_detailed_status.html.haml | |
parent | ae737d94ac10284738928109c11f43aeecca8a0b (diff) | |
parent | fe9340d95e9ae9a1870e9951e9b00ad5df4cc257 (diff) |
Merge branch 'glitch'
Diffstat (limited to 'app/views/stream_entries/_detailed_status.html.haml')
-rw-r--r-- | app/views/stream_entries/_detailed_status.html.haml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/stream_entries/_detailed_status.html.haml b/app/views/stream_entries/_detailed_status.html.haml index 6e6d0eda8..447667c5a 100644 --- a/app/views/stream_entries/_detailed_status.html.haml +++ b/app/views/stream_entries/_detailed_status.html.haml @@ -44,7 +44,10 @@ = link_to status.application.name, status.application.website, class: 'detailed-status__application', target: '_blank', rel: 'noopener' · = link_to remote_interaction_path(status), class: 'modal-button detailed-status__link' do - = fa_icon('reply') + - if status.in_reply_to_id.nil? + = fa_icon('reply') + - else + = fa_icon('reply-all') %span.detailed-status__reblogs>= number_to_human status.replies_count, strip_insignificant_zeros: true = " " · |