Skip to content

Commit f04e433

Browse files
committed
Increase the limit to 10000 rows
1 parent 4ce7bc3 commit f04e433

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/LoadDataView.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
};
4141
state.set('model', new recline.Model.Dataset(source));
4242
state.set('source', source);
43-
state.get('model').fetch().done(function(){
43+
state.get('model').queryState.attributes.size = 10000;
44+
state.get('model').fetch().done(function(data){
4445
cb(state);
4546
});
4647
}

0 commit comments

Comments
 (0)