mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
fix: conversation title truncation (#1237)
This commit is contained in:
parent
f5f5b2bbdb
commit
822914d521
1 changed files with 2 additions and 2 deletions
|
|
@ -114,9 +114,9 @@ export default function Conversation({ conversation, retainView, toggleNav, i })
|
|||
}
|
||||
|
||||
return (
|
||||
<a data-testid="convo-item" onClick={() => clickHandler()} {...aProps}>
|
||||
<a data-testid="convo-item" onClick={() => clickHandler()} {...aProps} title={title}>
|
||||
{icon}
|
||||
<div className="relative max-h-5 flex-1 overflow-hidden text-ellipsis break-all">
|
||||
<div className="relative line-clamp-1 max-h-5 flex-1 text-ellipsis break-all">
|
||||
{renaming === true ? (
|
||||
<input
|
||||
ref={inputRef}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue