File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed
frontend/app/[locale]/chat/components Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ export function ChatAgentSelector({
305305 < div
306306 key = { agent . agent_id }
307307 className = { `
308- flex items-start gap-3 px-3.5 py-3 text-sm h-[60px]
308+ flex items-start gap-3 px-3.5 py-2.5 text-sm
309309 transition-all duration-150 ease-in-out
310310 ${
311311 agent . is_available
@@ -367,21 +367,13 @@ export function ChatAgentSelector({
367367 </ div >
368368 </ div >
369369 < div
370- className = { `text-xs mt-1 leading-relaxed overflow-hidden ${
370+ className = { `text-xs mt-1 leading-relaxed ${
371371 agent . is_available
372372 ? selectedAgentId === agent . agent_id
373373 ? "text-blue-500"
374374 : "text-slate-500"
375375 : "text-slate-300"
376376 } `}
377- style = { {
378- display : '-webkit-box' ,
379- WebkitLineClamp : 2 ,
380- WebkitBoxOrient : 'vertical' ,
381- overflow : 'hidden' ,
382- textOverflow : 'ellipsis' ,
383- maxHeight : '2rem'
384- } }
385377 >
386378 { agent . description }
387379 { ! agent . is_available && (
You can’t perform that action at this time.
0 commit comments