feat(site): searchable workspace selector in agent chat input#22656
Merged
DanielleMaywood merged 1 commit intomainfrom Mar 5, 2026
Merged
feat(site): searchable workspace selector in agent chat input#22656DanielleMaywood merged 1 commit intomainfrom
DanielleMaywood merged 1 commit intomainfrom
Conversation
2d50bf1 to
5c8b339
Compare
Swap the radix Select for the existing Combobox (cmdk-powered) in the agent chat input workspace dropdown. This adds a search field so users can filter workspaces by owner or name. - Replace Select imports with Combobox in AgentsPage.tsx - Add keywords prop on each workspace item for owner/name matching - Fix WithWorkspaces story role assertion (listbox -> dialog) - Add SearchWorkspaces and SelectWorkspaceViaSearch stories
5c8b339 to
ff1b074
Compare
kylecarbs
approved these changes
Mar 5, 2026
Member
kylecarbs
left a comment
There was a problem hiding this comment.
As long as you've made sure the sizing is approx correct for text in there I'm good with it
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Replaces the radix
<Select>workspace dropdown in the agent chat input with the existing<Combobox>component (cmdk-powered), adding a search field to filter workspaces by owner or name.Changes
SelectforComboboxwithComboboxInputfor search. Each workspace item useskeywords={[owner_name, name]}for filtering.WithWorkspacesrole assertion (listbox→dialog). AddSearchWorkspacesandSelectWorkspaceViaSearchstories covering filter and selection flows.