Fix empty elements in docx rtf table [SCI-5659] (#3382)

This commit is contained in:
aignatov-bio 2021-06-14 12:41:34 +02:00 committed by GitHub
parent 04155f5d60
commit 0e87c44c4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,6 +50,8 @@ module Reports
elements = []
temp_p = []
raw_elements.each do |elem|
next unless elem
if %w(image newline table ol ul).include? elem[:type]
unless temp_p.empty?
elements.push(type: 'p', children: temp_p)