Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit c3b0aa2

Browse files
committed
fix: beside skipping empty rows, empty cells should be skipped as well; avoid unnecessary empty cells in final sheet covering longer cells left of them
1 parent 5f428c2 commit c3b0aa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xmlWorksheet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ func (worksheet *xlsxWorksheet) makeXlsxRowFromRow(row *Row, styles *xlsxStyleSh
717717
xRow.C = append(xRow.C, xC)
718718

719719
return nil
720-
})
720+
}, SkipEmptyCells)
721721

722722
return xRow, err
723723
}

0 commit comments

Comments
 (0)