mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +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 (
|
return (
|
||||||
<a data-testid="convo-item" onClick={() => clickHandler()} {...aProps}>
|
<a data-testid="convo-item" onClick={() => clickHandler()} {...aProps} title={title}>
|
||||||
{icon}
|
{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 ? (
|
{renaming === true ? (
|
||||||
<input
|
<input
|
||||||
ref={inputRef}
|
ref={inputRef}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue