mirror of
https://github.com/coder/coder.git
synced 2026-09-22 05:05:20 +08:00
fix: match workspace picker font size to plus menu dropdown (#23670)
This commit is contained in:
@@ -966,12 +966,18 @@ export const AgentChatInput: FC<AgentChatInputProps> = ({
|
||||
className="w-64 p-0"
|
||||
>
|
||||
<Command loop>
|
||||
<CommandInput placeholder="Search workspaces..." />
|
||||
<CommandInput
|
||||
placeholder="Search workspaces..."
|
||||
className="text-xs"
|
||||
/>
|
||||
<CommandList>
|
||||
<CommandEmpty>No workspaces found</CommandEmpty>
|
||||
<CommandEmpty className="text-xs">
|
||||
No workspaces found
|
||||
</CommandEmpty>
|
||||
<CommandGroup>
|
||||
{workspaceOptions.map((workspace) => (
|
||||
<CommandItem
|
||||
className="text-xs font-normal"
|
||||
key={workspace.id}
|
||||
value={workspace.name}
|
||||
onSelect={() => {
|
||||
|
||||
Reference in New Issue
Block a user