Skip to content

Commit

Permalink
increased cell height
Browse files Browse the repository at this point in the history
  • Loading branch information
bekossy committed Mar 22, 2024
1 parent f4afb2c commit dd84372
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export function LongTextCellRenderer(params: ICellRendererParams, output?: any)
)
})
const height = Math.max(...cellsArr.map((cell) => cell.scrollHeight))
node.setRowHeight(height <= defaultHeight ? defaultHeight * 2 : height)
node.setRowHeight(height <= defaultHeight ? defaultHeight * 2 : height + 10)
} else {
cellsArr.forEach((cell) => {
cell.setAttribute(
Expand Down

0 comments on commit dd84372

Please sign in to comment.