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
When user has a big dashboard and many native filters added, the filters config modal is very laggy and unresponsive.
We should:
Improve the structure of components that build filters config modal (for example FiltersConfigForm has over 1200 lines...)
Reduce the number of unnecessary rerenders (with React.memo, useCallback, useMemo). To measure and find unnecessary rerenders I recommend library whyDidYouRender
Measure the performance of filters config modal with Chrome devtools and try to optimize anything that stands out.
The text was updated successfully, but these errors were encountered:
When user has a big dashboard and many native filters added, the filters config modal is very laggy and unresponsive.
We should:
FiltersConfigForm
has over 1200 lines...)React.memo
,useCallback
,useMemo
). To measure and find unnecessary rerenders I recommend librarywhyDidYouRender
The text was updated successfully, but these errors were encountered: