about summary refs log tree commit diff
path: root/app/views/stream_entries/_simple_status.html.haml
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-11-30 22:09:52 +0100
committerThibaut Girka <thib@sitedethib.com>2018-11-30 22:09:52 +0100
commit1a5de0478906ade1443bd362ba41d8d0d38f1336 (patch)
tree7e322548ad91c141646035c496ac64e520017927 /app/views/stream_entries/_simple_status.html.haml
parentb65daa25faab0fbefd367b3cbbe4d32bfd8c5820 (diff)
Display a double reply arrow on public pages for toots that are replies
Diffstat (limited to 'app/views/stream_entries/_simple_status.html.haml')
-rw-r--r--app/views/stream_entries/_simple_status.html.haml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/stream_entries/_simple_status.html.haml b/app/views/stream_entries/_simple_status.html.haml
index e996d5052..3a4dacc06 100644
--- a/app/views/stream_entries/_simple_status.html.haml
+++ b/app/views/stream_entries/_simple_status.html.haml
@@ -37,7 +37,10 @@
   .status__action-bar
     .status__action-bar__counter
       = link_to remote_interaction_path(status), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
-        = fa_icon 'reply fw'
+        - if status.in_reply_to_id.nil?
+          = fa_icon 'reply fw'
+        - else
+          = fa_icon 'reply-all fw'
       .status__action-bar__counter__label= obscured_counter status.replies_count
     = link_to remote_interaction_path(status), class: 'status__action-bar-button icon-button modal-button', style: 'font-size: 18px; width: 23.1429px; height: 23.1429px; line-height: 23.15px;' do
       - if status.public_visibility? || status.unlisted_visibility?