Unverified Commit 3a3b40e0 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix nil error in warning e-mail template (#11812)

No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -58,7 +58,7 @@
%table.content-section{ cellspacing: 0, cellpadding: 0 }
%tbody
%tr
%td.content-cell{ class: @statuses.empty? ? '' : 'content-start' }
%td.content-cell{ class: @statuses.nil? || @statuses.empty? ? '' : 'content-start' }
%table.column{ cellspacing: 0, cellpadding: 0 }
%tbody
%tr
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment