From ec6604faff3b425a7e122ab6a7bfb8b192ed5dd5 Mon Sep 17 00:00:00 2001 From: H1d3rOne Date: Wed, 17 Jun 2026 09:52:39 +0800 Subject: [PATCH] fix(chat): show full model name on hover --- .../chat/dropdown-radio-item-content.tsx | 2 +- .../chat/session-config-selector.tsx | 21 +++++++++++++++---- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/src/components/chat/dropdown-radio-item-content.tsx b/src/components/chat/dropdown-radio-item-content.tsx index 0e352ce61..11e6807e7 100644 --- a/src/components/chat/dropdown-radio-item-content.tsx +++ b/src/components/chat/dropdown-radio-item-content.tsx @@ -12,7 +12,7 @@ export function DropdownRadioItemContent({ const normalizedDescription = description?.trim() return ( -
+

{label}

{normalizedDescription ? (

diff --git a/src/components/chat/session-config-selector.tsx b/src/components/chat/session-config-selector.tsx index fa79cd8c1..38745a2ab 100644 --- a/src/components/chat/session-config-selector.tsx +++ b/src/components/chat/session-config-selector.tsx @@ -44,7 +44,10 @@ export function SessionConfigSelector({ {option.name} - + {currentLabel} @@ -68,6 +71,7 @@ export function SessionConfigSelector({ )) : option.kind.options.map((item) => ( - + {currentLabel} @@ -142,6 +150,7 @@ export function InlineSessionConfigSelector({ )) : option.kind.options.map((item) => ( - +