Fix issue when no primary display is set
This commit is contained in:
parent
15dffb0f40
commit
4558a1c6fa
|
@ -19,7 +19,7 @@
|
|||
$: scrollLeft = $scroll.left
|
||||
$: rowCount = $rows.length
|
||||
$: selectedRowCount = Object.values($selectedRows).filter(x => !!x).length
|
||||
$: width = 40 + $stickyColumn?.width || 0
|
||||
$: width = 40 + ($stickyColumn?.width || 0)
|
||||
|
||||
const selectAll = () => {
|
||||
const allSelected = selectedRowCount === rowCount
|
||||
|
|
Loading…
Reference in New Issue