File tree Expand file tree Collapse file tree
frontend/src/components/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 DropdownMenu ,
55 DropdownMenuContent ,
66 DropdownMenuItem ,
7+ DropdownMenuSeparator ,
78 DropdownMenuTrigger ,
89} from '@/components/ui/dropdown-menu'
910import { useModelSelection } from '@/hooks/useModelSelection'
@@ -120,12 +121,12 @@ export function ModelQuickSelect({
120121 { model && (
121122 < >
122123 < DropdownMenuItem className = "flex items-center justify-between font-medium" >
123- < span className = "truncate" >
124+ < span className = "truncate text-orange-500 " >
124125 { duplicateDisplayNames . has ( currentModelDisplayName )
125126 ? `${ currentProviderName } /${ currentModelDisplayName } `
126127 : currentModelDisplayName }
127128 </ span >
128- < Check className = "h-4 w-4" />
129+ < Check className = "h-4 w-4 text-orange-500 " />
129130 </ DropdownMenuItem >
130131 < DropdownMenuItem
131132 onClick = { handleCurrentFavoriteToggle }
@@ -134,6 +135,7 @@ export function ModelQuickSelect({
134135 < span > { isCurrentFavorite ? 'Remove from favorites' : 'Add to favorites' } </ span >
135136 < Star className = { `h-4 w-4 ${ isCurrentFavorite ? 'fill-yellow-400 text-yellow-400' : '' } ` } />
136137 </ DropdownMenuItem >
138+ < DropdownMenuSeparator />
137139 </ >
138140 ) }
139141
You can’t perform that action at this time.
0 commit comments