We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e767801 commit e9a3cfcCopy full SHA for e9a3cfc
packages/app/src/components/prompt-input.tsx
@@ -1023,7 +1023,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
1023
options={local.agent.list().map((agent) => agent.name)}
1024
current={local.agent.current()?.name ?? ""}
1025
onSelect={local.agent.set}
1026
- class={`capitalize ${local.model.variant.list().length > 0 ? "max-w-[80px]" : "max-w-[120px]"}`}
+ class={`capitalize ${local.model.variant.list().length > 0 ? "max-w-full" : "max-w-[120px]"}`}
1027
valueClass="truncate"
1028
variant="ghost"
1029
/>
0 commit comments