mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-06-08 06:25:34 +08:00
Merge pull request #838 from siteboon/fix/do-not-show-model-description-in-chat-view
This commit is contained in:
@@ -277,11 +277,15 @@ export default function ProviderSelectionEmptyState({
|
|||||||
>
|
>
|
||||||
<div className="min-w-0 flex-1">
|
<div className="min-w-0 flex-1">
|
||||||
<div className="truncate">{model.label}</div>
|
<div className="truncate">{model.label}</div>
|
||||||
{model.description && (
|
{/*
|
||||||
|
// * Temporarly commented out because the description of models from claude
|
||||||
|
// * was a bit inconsistent. Will return it back when it becomes more consistent.
|
||||||
|
*/}
|
||||||
|
{/* {model.description && (
|
||||||
<div className="truncate text-xs text-muted-foreground">
|
<div className="truncate text-xs text-muted-foreground">
|
||||||
{model.description}
|
{model.description}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)} */}
|
||||||
</div>
|
</div>
|
||||||
{isSelected && (
|
{isSelected && (
|
||||||
<Check className="ml-auto h-4 w-4 shrink-0 text-primary" />
|
<Check className="ml-auto h-4 w-4 shrink-0 text-primary" />
|
||||||
|
|||||||
Reference in New Issue
Block a user