Skip to content

Commit 3366127

Browse files
committed
fix: 'active' should be passed to getRows
1 parent 22abd56 commit 3366127

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • log-viewer/modules/components/calltree-view/module

log-viewer/modules/components/calltree-view/module/Find.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class Find extends Module {
4646

4747
// Only get the currently visible rows
4848
const grps = tbl.getGroups().flatMap(flattenFromGrps);
49-
const flattenedRows = grps.length ? grps : tbl.getRows(true).flatMap(flatten);
49+
const flattenedRows = grps.length ? grps : tbl.getRows('active').flatMap(flatten);
5050

5151
tbl.blockRedraw();
5252
let totalMatches = 0;

0 commit comments

Comments
 (0)