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
This isn't really related to #1007, since this is affecting initial props. So, if the component starts out with anything other than its default/initial pagination prop eg:
In some cases we want to initiate/start a table at page 3 for example.
This relates to elastic/kibana#32663, unfortunately angular does not update react components but instead redraws them anytime there is a change from the scope
I can't see us changing the names of these props (so the mapping in the above PR will need to remain), but it does make sense to support an initial page index.
This isn't really related to #1007, since this is affecting initial props. So, if the component starts out with anything other than its default/initial pagination prop eg:
I think it's because
getInitialPagination
does not return anything if pagination does exist:https://github.com/elastic/eui/blob/master/src/components/basic_table/in_memory_table.js#L95
Maybe reimplementing it to something like this might fix it:
The text was updated successfully, but these errors were encountered: