Connections dashboard limits connections to 25 items #1134
Unanswered
Francois Hendriks (Domino9697)
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hey everyone!
First thanks a lot for this amazing project!
Context:
I am testing this project as a way to connect multiple providers for multiple environments inside my application. This means I want to be able to add a LOT of connections (42 right now!).
Problem:
The connections admin page (
/connections) only ever shows 25. When I add a new one it appears at the top and the oldest drops off the list.The part that cost me the most time: the search box doesn't find them either. It filters the 25 already loaded rather than querying the server, so searching for a connection that exists returns "No connections found". It looks like the connection was never created. The tab label also reads "Your Accounts (25)", which is the page size, not the real count.
Tested on 2026.1.31 and 2026.1.32 (identical behaviour).
Investigation:
I see that right now this admin page has no pagination built in but the underlying query does and limits items to 25. Ideally, we add pagination to this admin dashboard.
This is not a blocker... I am using the API directly for the items I don't see in the UI !
Right now I see 2 solutions to my problem:
Happy to open a PR for both the short-term and long term fix if that's useful!
All reactions