We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c1f690 + 6f61ac6 commit 1130ba0Copy full SHA for 1130ba0
packages/perspective-viewer/src/js/viewer/dom_element.js
@@ -103,9 +103,7 @@ export class DomElement extends PerspectiveElement {
103
104
if (nrows < 100000) {
105
// Autocomplete
106
- const json = await view.to_json({
107
- end_row: 10
108
- });
+ const json = await view.to_json();
109
row.choices(this._autocomplete_choices(json, type));
110
} else {
111
console.warn(`perspective-viewer did not generate autocompletion results - ${nrows} is greater than limit of 100,000 rows.`);
0 commit comments