You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now performance is fine but not great. Depending on the computer, initial load and clearing all filters is noticeably slow, taking about 250ms-400ms in my own testing. I've tracked this down to DOM repaint performance; we have a lot of nodes on the page, so we should try to reduce that count.
I'm currently favoring pagination to limit the number of results we show at once. It tends to be more accessible than infinite scrolls and is easier to implement and maintain. A count of about 30 records per page seems good to me, but an open question I have is if we should have the ability to allow users to adjust this?
The text was updated successfully, but these errors were encountered:
Right now performance is fine but not great. Depending on the computer, initial load and clearing all filters is noticeably slow, taking about 250ms-400ms in my own testing. I've tracked this down to DOM repaint performance; we have a lot of nodes on the page, so we should try to reduce that count.
I'm currently favoring pagination to limit the number of results we show at once. It tends to be more accessible than infinite scrolls and is easier to implement and maintain. A count of about
30
records per page seems good to me, but an open question I have is if we should have the ability to allow users to adjust this?The text was updated successfully, but these errors were encountered: