-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Configurable default row limit for native filters #24043
Conversation
Codecov Report
@@ Coverage Diff @@
## master #24043 +/- ##
==========================================
- Coverage 68.30% 68.29% -0.02%
==========================================
Files 1957 1957
Lines 75590 75595 +5
Branches 8223 8224 +1
==========================================
- Hits 51635 51625 -10
- Misses 21848 21863 +15
Partials 2107 2107
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 5 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
My only head-scratcher on this is whether or not there's a way to fetch the setting by other means (i.e. an API call) since I think we're trying to reduce reliance on the server-generated bootstrap data blob. I tagged a few people who know more about this game than I do :) |
Hey thanks, happy to change it however you or others prefer. |
For me, the problem is not about having some form of bootstrap data, because we do have initial global configurations, but the way we're currently doing. I'm ok with the approach for now, as we didn't define a new model to get these global configurations yet (or did we?). |
Hi, thanks for the comments, if you are happy with this approach is there anything preventing this from being merged? |
SUMMARY
The default row limit for native filters was previously hardcoded to 1000. This PR makes this configurable through a new config property called
NATIVE_FILTER_DEFAULT_ROW_LIMIT
. This solves issue: #20521BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION