Skip to content

Commit

Permalink
Handle STR type #123
Browse files Browse the repository at this point in the history
  • Loading branch information
Desire456 committed Jul 20, 2021
1 parent 5512651 commit 533d845
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ protected void updateCell(WorksheetPart worksheetPart, BandData bandData, Cell n
is.setT(t);
newCell.setIs(is);
newCell.setV("");
if (newCell.getT() == STCellType.S) {
if (newCell.getT() == STCellType.S || newCell.getT() == STCellType.STR) {
newCell.setT(STCellType.INLINE_STR);
}
}
Expand Down

0 comments on commit 533d845

Please sign in to comment.