fix: remove 10-item display limit in Agent Canvas configuration tables#13049
Merged
KevinHuSh merged 1 commit intoinfiniflow:mainfrom Feb 9, 2026
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #13049 +/- ##
===========================================
+ Coverage 33.71% 44.14% +10.43%
===========================================
Files 43 43
Lines 9380 9380
Branches 107 107
===========================================
+ Hits 3162 4141 +979
+ Misses 6209 5220 -989
- Partials 9 19 +10 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Collaborator
|
LGTM main(e51a40f): |
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.


Description
This PR fixes an issue where the input and variable configuration tables in the Agent Canvas (specifically for Begin, UserFillUp, and Invoke nodes) were truncated at 10 items.
Root Cause:
The tables utilized
@tanstack/react-tablewithgetPaginationRowModel()enabled. Since the default page size is 10 and no pagination UI controls were implemented, users could not access items beyond the 10th row.Solution:
Removed
getPaginationRowModelfrom the table configurations. These lists (inputs/variables) are typically short, so rendering all items in a single scrollable view is the intended behavior.query-table.tsxvariable-table.tsxHow to verify
What kind of change does this PR introduce?