Skip to content

Commit

Permalink
Don't make null track data rows in slice panel
Browse files Browse the repository at this point in the history
  • Loading branch information
ALevansSamsung committed Jun 26, 2024
1 parent a0f72a6 commit 9ac7a0e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ui/src/controller/selection_controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ export class SelectionController extends Controller<'main'> {

for (const k of details.columns()) {
const v = rowIter.get(k);
if (v === null) {
continue;
}
switch (k) {
case 'id':
break;
Expand Down

0 comments on commit 9ac7a0e

Please sign in to comment.