We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ea3bc commit 1f29cc2Copy full SHA for 1f29cc2
src/selection.ts
@@ -1064,6 +1064,10 @@ export class SortedDataSelection extends DataSelection {
1064
);
1065
newer.tiles = await Promise.all(withSort);
1066
newer.selectionSize = newer.tiles.reduce((sum, t) => sum + t.matchCount, 0);
1067
+ newer.evaluationSetSize = newer.tiles.reduce(
1068
+ (sum, t) => sum + t.tile.metadata.nPoints,
1069
+ 0,
1070
+ );
1071
return newer;
1072
}
1073
// In addition to the regular things, we also need to add sort fields.
0 commit comments