20 rows a page instead of 50 - #287
Merged
Merged
Conversation
Fifty rows is two screens of scrolling before you reach Volgende, on a list people work through by looking rather than by reading. Twenty is about what the viewport holds at a 34-38px row, so paging replaces the scrollbar instead of coming after it. Herstel follows the same number: it is the same table doing the same job, and the two lists disagreeing about how long a page is would be a detail you notice only by being wrong about it. Werkbank's LANE_FETCH stays at 50 -- that is a lane ceiling behind a "50+" label, not a page. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fifty rows is two screens of scrolling before you reach Volgende, on a list people work through by looking rather than by reading. Twenty is roughly what the viewport holds at a 34–38px row, so paging replaces the scrollbar instead of arriving after it.
PAGE_SIZEinservices/explorer.ts: 50 → 20 (Rapportages).RecoveryListView's local page size follows it. Same table, same job — two lists disagreeing about how long a page is is a detail you only notice by being wrong about it.LANE_FETCHstays at 50. That is the Werkbank's lane ceiling behind a50+label, not a page; dropping it would turn honest counts into20+everywhere.One knock-on worth knowing: the type filter narrows the visible page (
GET /inquiryhas no type parameter), so on a 20-row page it has less to work with. The popover already says so; this makes that caveat louder rather than newly untrue.pnpm buildgreen.🤖 Generated with Claude Code