Skip to content

Commit

Permalink
check for long negavtive numbers not just positive (#11750)
Browse files Browse the repository at this point in the history
  • Loading branch information
marthasharkey authored Dec 3, 2024
1 parent 7a3f34d commit 48a87ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ watchEffect(() => {
const needsGrouping = rowData.value.some((row) => {
if (header in row && row[header] != null) {
const value = typeof row[header] === 'object' ? row[header].value : row[header]
return value > 9999
return value > 999999 || value < -999999
}
})
headerGroupingMap.set(header, needsGrouping)
Expand Down

0 comments on commit 48a87ce

Please sign in to comment.