Skip to content

Commit

Permalink
fix scroll issue
Browse files Browse the repository at this point in the history
  • Loading branch information
willydouhard committed Nov 16, 2023
1 parent e9aadf5 commit e6142d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "chainlit"
version = "0.7.603"
version = "0.7.604rc0"
keywords = ['LLM', 'Agents', 'gen ai', 'chat ui', 'chatbot ui', 'langchain']
description = "A faster way to build chatbot UIs."
authors = ["Chainlit"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const MessageContent = memo(

return (
<Stack width="100%" direction="row">
<Box width="100%" sx={{ overflowX: 'auto', minWidth: '100px' }}>
<Box width="100%" sx={{ minWidth: '100px' }}>
{preparedContent ? content : null}
<InlinedElements elements={inlinedElements} />
</Box>
Expand Down

0 comments on commit e6142d2

Please sign in to comment.