Browse Source

Fix error in warning e-mail template (#11698)

master^2
Eugen Rochko 4 years ago
committed by GitHub
parent
commit
14996496a5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      app/views/user_mailer/warning.html.haml
  2. +1
    -1
      app/views/user_mailer/warning.text.erb

+ 2
- 2
app/views/user_mailer/warning.html.haml View File

@@ -42,11 +42,11 @@
- unless @warning.text.blank?
= Formatter.instance.linkify(@warning.text)

- unless @statuses.empty?
- unless @statuses&.empty?
%p
%strong= t('user_mailer.warning.statuses')

- unless @statuses.empty?
- unless @statuses&.empty?
- @statuses.each_with_index do |status, i|
= render 'notification_mailer/status', status: status, i: i + 1, highlighted: true



+ 1
- 1
app/views/user_mailer/warning.text.erb View File

@@ -7,7 +7,7 @@

<% end %>
<%= @warning.text %>
<% unless @statuses.empty? %>
<% unless @statuses&.empty? %>
<%= t('user_mailer.warning.statuses') %>

<% @statuses.each do |status| %>


Loading…
Cancel
Save