(core) updates from grist-core

This commit is contained in:
Alex Hall
2023-07-28 17:40:31 +02:00
10 changed files with 52 additions and 50 deletions

View File

@@ -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++;
}
}