Commit edc286b6 authored by GoshaZotov's avatar GoshaZotov

fix bug 32930

parent 627b8e65
...@@ -2211,7 +2211,9 @@ ...@@ -2211,7 +2211,9 @@
else else
{ {
var format = cell.xfs && cell.xfs.font ? cell.xfs.font : null; var format = cell.xfs && cell.xfs.font ? cell.xfs.font : null;
var elem = getSpan(cell.getValue(), format, true);
var isAddSpace = row.c[parseInt(j) + 1] || (!row.c[parseInt(j) + 1] && worksheet.aGCells[parseInt(i) + 1]) ? true : false;
var elem = getSpan(cell.getValue(), format, isAddSpace);
if(null !== elem) if(null !== elem)
{ {
res.appendChild(elem); res.appendChild(elem);
......
Markdown is supported
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