ngduc / react-tabulator

React Tabulator is based on tabulator - a JS table library with many advanced features.
https://codesandbox.io/s/0mwpy612xw?module=/src/components/Home.js
MIT License
361 stars 81 forks source link

Large data loads freeze browser #49

Open JoeSzymkowicz opened 5 years ago

JoeSzymkowicz commented 5 years ago

Short Description:

On line 33, you can set data = generator(clientsSchema, [min], [max]) for min and max row amounts to be generated. Currently set to 500 and 600.

Environment Details

Code https://codesandbox.io/embed/opl1qj2ny

ngduc commented 4 years ago

@olifolkerd I can reproduce this issue using the above codesandbox link ^ could you please check it? Thanks.

julillosamaral commented 2 years ago

It happened to me and was able to reproduce it in the codesandbox.

To actually make it fail you have to change set data = generator(clientsSchema, [min], [max]) to set data = generator(clientsSchema, 2500, 2600) and the codesandbox just hangs.