From 10a2b3effdeba90a27da9425259fb53213aaedf7 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Wed, 22 Apr 2026 14:31:41 +0200 Subject: [PATCH] fix: include empty values in missing data view filters --- src/components/MissingDataView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MissingDataView.tsx b/src/components/MissingDataView.tsx index 8ba2a0d..664686c 100644 --- a/src/components/MissingDataView.tsx +++ b/src/components/MissingDataView.tsx @@ -112,7 +112,7 @@ export function MissingDataView({ data, headers, onSaveRow, onCaptureState }: Mi } else { val = String(val ?? ''); } - if (val) result[col].add(val); + result[col].add(val); }); }); return result;