mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
fix: don't count falses in summary (#589)
This commit is contained in:
@@ -244,7 +244,7 @@ export class SelectionSummary extends Disposable {
|
||||
} else {
|
||||
for (const i of rowIndices) {
|
||||
const value = values[i];
|
||||
if (value !== null && value !== undefined && value !== '' && !isEmpty?.(value)) {
|
||||
if (value !== null && value !== undefined && value !== '' && value !== false && !isEmpty?.(value)) {
|
||||
countNonEmpty++;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user