Fix nil error in warning e-mail template (#11812)
This commit is contained in:
		
							parent
							
								
									c5d37f18cb
								
							
						
					
					
						commit
						3a3b40e0c3
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -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…
	
	Add table
		
		Reference in a new issue