@lobehub/chat 1.26.12 → 1.26.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.26.13](https://github.com/lobehub/lobe-chat/compare/v1.26.12...v1.26.13)
6
+
7
+ <sup>Released on **2024-10-30**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix the artifacts interface not scrolling.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Fix the artifacts interface not scrolling, closes [#4499](https://github.com/lobehub/lobe-chat/issues/4499) ([8b6e630](https://github.com/lobehub/lobe-chat/commit/8b6e630))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 1.26.12](https://github.com/lobehub/lobe-chat/compare/v1.26.11...v1.26.12)
6
31
 
7
32
  <sup>Released on **2024-10-30**</sup>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.26.12",
3
+ "version": "1.26.13",
4
4
  "description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
5
5
  "keywords": [
6
6
  "framework",
@@ -18,7 +18,7 @@ const Renderer = memo<{ content: string; type?: string }>(({ content, type }) =>
18
18
  }
19
19
 
20
20
  case 'text/markdown': {
21
- return <Markdown>{content}</Markdown>;
21
+ return <Markdown style={{ overflow: 'auto' }}>{content}</Markdown>;
22
22
  }
23
23
 
24
24
  default: {
@@ -26,7 +26,7 @@ const ToolUI = () => {
26
26
 
27
27
  return (
28
28
  <>
29
- <Flexbox flex={1} height={'100%'} paddingInline={12}>
29
+ <Flexbox flex={1} height={'100%'} paddingInline={12} style={{ overflow: 'auto' }}>
30
30
  <ToolRender />
31
31
  </Flexbox>
32
32
  <Footer />
@@ -16,7 +16,7 @@ const Body = ({ children }: PropsWithChildren) => {
16
16
  <Flexbox
17
17
  className={cx(body, 'portal-body')}
18
18
  height={'100%'}
19
- style={{ position: 'relative' }}
19
+ style={{ flex: 1, height: 0, position: 'relative' }}
20
20
  width={'100%'}
21
21
  >
22
22
  {children}