You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keep search above the view switch across Permission Groups and every Credential Groups tab, with independent search values and consistent loading/error states.
Add bounded request search by item, requester name, and email before pagination; preserve complete provider/grant payloads when filtering the UI.
Limit dropdowns inside dialogs to 240px so long lists can fit below their fields, retain viewport collision handling, and announce required/invalid field states through accessible descriptions.
Align request sections, pagination, empty states, and modal hints with shared Settings components.
Type of Change
Bug fix
Testing
Focused tests passed, including local PostgreSQL search, pagination, scope, and wildcard checks; 56 dropdown/modal tests passed after the review correction.
Browser checks with real components and fixture data: stable switch positions across all tabs, restored searches, modal dropdown scrolling/selection, Escape/focus, and a short viewport.
App and EMCN type checks, lint, 46 repo audits (including API boundary validation), block registry audit, and docs manifest check passed.
The PR appears safe to merge, with no outstanding correctness, security, or repository-rule failures identified.
Summary
This PR stabilizes Settings search state and layout across permission groups, credential groups, and organization access requests while improving modal dropdown sizing and accessibility.
Adds independent URL-backed search values for relevant Settings tabs and keeps the shared search field stable while switching views.
Adds bounded, scoped organization-request search across target labels and requester identities before pagination.
Preserves complete provider and workspace-grant payloads while filtering displayed rows.
Limits modal dropdown height according to available viewport space and forwards field descriptions through shared dropdown controls.
Aligns loading, error, pagination, and empty states with shared Settings components.
Diagram
%%{init: {'theme': 'neutral'}}%%
flowchart LR
Input[Settings search input] --> URL[URL-backed search state]
URL -->|Permission/Credential groups| ClientFilter[Client-side row filtering]
URL -->|Access requests| Debounce[Debounced bounded query]
Debounce --> API[Authorized organization API]
API --> Scope[Organization and status scope]
Scope --> Match[Target label or requester match]
Match --> Page[Pagination]
Page --> Results[Settings request list]
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
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.
Summary
Type of Change
Testing
Checklist