-
Notifications
You must be signed in to change notification settings - Fork 15
Description
In the Oxide Console pressing Ctrl + k (Linux/Windows) or Cmd + k (macOS) opens the Jump To modal which allows operators to quickly perform actions such as jumping to a project or silo.
If an operator has more than 25 projects in their silo then they will only be able to jump to one of the first 25 projects in lexicographical order. For example, if a silo has 50 projects named foo01 to foo50 then they can only jump to projects foo01 to foo25.
An operator should be able to jump to any project within their silo via the Jump To modal.
A naive fix would be to bump the PAGE_SIZE constant since that is used in the ProjectsPage component but that would just move the problem to a larger number.
console/app/table/QueryTable.tsx
Line 62 in 67033a3
| export const PAGE_SIZE = 25 |
console/app/pages/ProjectsPage.tsx
Lines 65 to 67 in 67033a3
| const { data: projects } = usePrefetchedApiQuery('projectList', { | |
| query: { limit: PAGE_SIZE }, | |
| }) |