fix(web): fix pagination on the task setting page so it won't cut off tasks after first ten rows#1926
Merged
chrisbenincasa merged 1 commit intoJun 19, 2026
Conversation
Owner
|
The issue here is the page is using the wrong component to mount the table. It's using MRT_Table, which is a building block component that doesnt include header/footer, etc. Switching from MRT_Table to |
… tasks after first ten rows
2d5e38e to
78550de
Compare
Contributor
Author
|
Thanks, I don't really know React well. PR updated to fix pagination instead of removing. |
Owner
|
Thanks for the fix! |
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.
For some reason, the tasks table was paginating without showing pagination controls which resulted in whichever two tasks were last in the list being inaccessible unless you sorted the table by a different column (in which case two other tasks would be cut off).