Skip to content

Commit 1130ba0

Browse files
authored
Merge pull request #1514 from finos/revert-filter-limit
Remove filter limit
2 parents 1c1f690 + 6f61ac6 commit 1130ba0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/perspective-viewer/src/js/viewer/dom_element.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,7 @@ export class DomElement extends PerspectiveElement {
103103

104104
if (nrows < 100000) {
105105
// Autocomplete
106-
const json = await view.to_json({
107-
end_row: 10
108-
});
106+
const json = await view.to_json();
109107
row.choices(this._autocomplete_choices(json, type));
110108
} else {
111109
console.warn(`perspective-viewer did not generate autocompletion results - ${nrows} is greater than limit of 100,000 rows.`);

0 commit comments

Comments
 (0)