fix(table-core): expand rows with manual pagination#6440
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
View your CI Pipeline Execution ↗ for commit 58baef6
☁️ Nx Cloud last updated this comment at |
Summary
Why
With manualPagination enabled, the table assumes incoming data already represents a page and bypasses createPaginatedRowModel. When paginateExpandedRows was false, createExpandedRowModel also deferred expansion to that skipped pagination stage, so expanded children never appeared.
This preserves the documented behavior that expanded children remain on their parent page without consuming page slots, while making it work for data paginated outside the table.
Validation
Closes #5110