Skip to content
Snippets Groups Projects
Unverified Commit 14996496 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

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

parent 22ce4778
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -7,7 +7,7 @@
<% end %>
<%= @warning.text %>
<% unless @statuses.empty? %>
<% unless @statuses&.empty? %>
<%= t('user_mailer.warning.statuses') %>
<% @statuses.each do |status| %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment