mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-05-02 17:07:13 +00:00
Show scrollbar on rendered tables in chat (#2884)
show scrollbar on rendered tables in chat Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
This commit is contained in:
parent
4b2bb529c9
commit
bbc0bec524
2 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ const HistoricalMessage = ({
|
|||
saveChanges={saveEditedMessage}
|
||||
/>
|
||||
) : (
|
||||
<div className="overflow-x-scroll break-words no-scroll">
|
||||
<div className="overflow-x-scroll break-words show-scrollbar">
|
||||
<span
|
||||
className="flex flex-col gap-y-1"
|
||||
dangerouslySetInnerHTML={{
|
||||
|
|
|
@ -62,7 +62,7 @@ const PromptReply = ({
|
|||
<div className="flex gap-x-5">
|
||||
<WorkspaceProfileImage workspace={workspace} />
|
||||
<span
|
||||
className={`overflow-x-scroll break-words no-scroll`}
|
||||
className="overflow-x-scroll break-words show-scrollbar"
|
||||
dangerouslySetInnerHTML={{ __html: renderMarkdown(reply) }}
|
||||
/>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue