Skip to content

Commit

Permalink
fix: beside skipping empty rows, empty cells should be skipped as wel…
Browse files Browse the repository at this point in the history
…l; avoid unnecessary empty cells in final sheet covering longer cells left of them
  • Loading branch information
knubix committed Sep 19, 2024
1 parent 5f428c2 commit c3b0aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmlWorksheet.go
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ func (worksheet *xlsxWorksheet) makeXlsxRowFromRow(row *Row, styles *xlsxStyleSh
xRow.C = append(xRow.C, xC)

return nil
})
}, SkipEmptyCells)

return xRow, err
}
Expand Down

0 comments on commit c3b0aa2

Please sign in to comment.