Skip to content

Commit 9ac7a0e

Browse files
Don't make null track data rows in slice panel
1 parent a0f72a6 commit 9ac7a0e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ui/src/controller/selection_controller.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,9 @@ export class SelectionController extends Controller<'main'> {
181181

182182
for (const k of details.columns()) {
183183
const v = rowIter.get(k);
184+
if (v === null) {
185+
continue;
186+
}
184187
switch (k) {
185188
case 'id':
186189
break;

0 commit comments

Comments
 (0)