Fix notifications#index when member is nil

This commit is contained in:
Hugo Peixoto 2024-02-01 09:13:44 +00:00
parent b55142d9b8
commit 4eb6d2de05
1 changed files with 7 additions and 1 deletions

View File

@ -39,7 +39,13 @@
<tr>
<td><%= notification.to_be_sent_on %></td>
<td><code><%= notification.template %></code></td>
<td><%= link_to notification.member do %><%= notification.member.display_name %> &lt;<%= notification.member.email %>&gt;<% end %></td>
<td>
<% if notification.member %>
<%= link_to notification.member do %><%= notification.member.display_name %> &lt;<%= notification.member.email %>&gt;<% end %>
<% else %>
---
<% end %>
</td>
<td>
<% if notification.status == 'scheduled' %>
<%= form_with url: deliver_notification_path(notification) do |form| %>