File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -439,16 +439,10 @@ function PureModelSelectorCompact({
439
439
< PromptInputModelSelectContent className = "min-w-[260px] p-0" >
440
440
< div className = "flex flex-col gap-px" >
441
441
{ chatModels . map ( ( model ) => (
442
- < SelectItem
443
- className = "px-3 py-2 text-xs"
444
- key = { model . id }
445
- value = { model . name }
446
- >
447
- < div className = "flex min-w-0 flex-1 flex-col gap-1" >
448
- < div className = "truncate font-medium text-xs" > { model . name } </ div >
449
- < div className = "truncate text-[10px] text-muted-foreground leading-tight" >
450
- { model . description }
451
- </ div >
442
+ < SelectItem key = { model . id } value = { model . name } >
443
+ < div className = "truncate font-medium text-xs" > { model . name } </ div >
444
+ < div className = "mt-px truncate text-[10px] text-muted-foreground leading-tight" >
445
+ { model . description }
452
446
</ div >
453
447
</ SelectItem >
454
448
) ) }
You can’t perform that action at this time.
0 commit comments