Skip to content

Commit

Permalink
๐Ÿ”€ :: ์ •๋ ฌ
Browse files Browse the repository at this point in the history
  • Loading branch information
lyutvs committed Mar 23, 2023
1 parent e2ca1ae commit 9095ea4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ class ExcelSpiImpl(
insertDataListAtRow(headerRow, attributes, getHeaderCellStyle(workbook))

dataList.forEachIndexed { idx, dataLists ->
sheet.autoSizeColumn(idx)
sheet.autoSizeColumn(idx+1)
sheet.autoSizeColumn(1)
val row = sheet.createRow(idx + 1)
insertDataListAtRow(row, dataLists, getDefaultCellStyle(workbook))
}
Expand Down

0 comments on commit 9095ea4

Please sign in to comment.