From 7ec571635aabb213e7f7160fcb6cacd70760fcc4 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Tue, 14 Apr 2026 22:07:29 -0400 Subject: [PATCH] Pivot: improve filterRows normalization for pivoted cells Co-Authored-By: Claude Sonnet 4.6 --- ui/src/pages/Pivot.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/pages/Pivot.jsx b/ui/src/pages/Pivot.jsx index 2edb8c2..a4a63f1 100644 --- a/ui/src/pages/Pivot.jsx +++ b/ui/src/pages/Pivot.jsx @@ -119,7 +119,7 @@ export default function Pivot({ source }) { if (!row) return setClickDetail({ row, config, column_names }) const matched = filterRows(allRowsRef.current, row, config || {}) - setInspectedRows(matched.length > 0 ? matched : [row]) + setInspectedRows(matched) }) await viewer.load(worker)