Fix nil error in warning e-mail template (#11812)
parent
4291b74031
commit
a74b17635b
|
@ -58,7 +58,7 @@
|
||||||
%table.content-section{ cellspacing: 0, cellpadding: 0 }
|
%table.content-section{ cellspacing: 0, cellpadding: 0 }
|
||||||
%tbody
|
%tbody
|
||||||
%tr
|
%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 }
|
%table.column{ cellspacing: 0, cellpadding: 0 }
|
||||||
%tbody
|
%tbody
|
||||||
%tr
|
%tr
|
||||||
|
|
Loading…
Reference in New Issue