mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix display issues with too long profile names in ChatTextArea.tsx (#3371)
This commit is contained in:
parent
a79d18739a
commit
4091131859
1 changed files with 8 additions and 2 deletions
|
|
@ -1054,8 +1054,14 @@ const ChatTextArea = forwardRef<HTMLTextAreaElement, ChatTextAreaProps>(
|
|||
|
||||
return (
|
||||
<div className="flex justify-between gap-2 w-full h-5">
|
||||
<div className={cn({ "font-medium": isCurrentConfig })}>{label}</div>
|
||||
<div className="flex justify-end w-10">
|
||||
<div
|
||||
className={cn("truncate min-w-0 overflow-hidden", {
|
||||
"font-medium": isCurrentConfig,
|
||||
})}
|
||||
title={label}>
|
||||
{label}
|
||||
</div>
|
||||
<div className="flex justify-end w-10 flex-shrink-0">
|
||||
<div
|
||||
className={cn("size-5 p-1", {
|
||||
"block group-hover:hidden": !pinned,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue