From 35370684e503ef4c51a9b6798eef12d336ed1ee9 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 4 Dec 2019 16:42:57 +0100 Subject: [PATCH] Make the back button link to the inbox when reading received messages --- app/views/messages/show.html.erb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb index 8ad5af9dd..ea4f5e40d 100644 --- a/app/views/messages/show.html.erb +++ b/app/views/messages/show.html.erb @@ -17,6 +17,8 @@ <%= button_to t(".reply_button"), message_reply_path(@message), :class => "reply-button" %> <%= button_to t(".unread_button"), message_mark_path(@message, :mark => "unread"), :class => "mark-unread-button" %> <%= button_to t(".destroy_button"), message_path(@message), :method => "delete", :class => "destroy-button" %> + <%= link_to t(".back"), inbox_messages_path, :class => "button deemphasize" %> + <% else %> @@ -33,8 +35,7 @@
<%= @message.body.to_html %>
+ <%= link_to t(".back"), outbox_messages_path, :class => "button deemphasize" %> +
<% end %> - - <%= link_to t(".back"), outbox_messages_path, :class => "button deemphasize" %> - -- 2.43.2