-
when open bim file,the brower console this: Warning |presentation-components.Hierarchy| PresentationTreeDataProvider.pagingSize doesn't match pageOptions in PresentationTreeDataProvider.getNodes call. but in code,no use the PresentationTreeDataProvider initPromises.push(Presentation.initialize({ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The warning originates from right here: https://github.com/imodeljs/imodeljs/blob/5b8fd1fd7e8501ad0a252fd9d7e79c7d6a620821/presentation/components/src/presentation-components/tree/DataProvider.ts#L146-L148 It is possible that you're using some component that uses this provider and doesn't set the |
Beta Was this translation helpful? Give feedback.
The warning originates from right here: https://github.com/imodeljs/imodeljs/blob/5b8fd1fd7e8501ad0a252fd9d7e79c7d6a620821/presentation/components/src/presentation-components/tree/DataProvider.ts#L146-L148
It is possible that you're using some component that uses this provider and doesn't set the
pagingSize
. Putting the breakpoint at those lines would help identify what that is.