@lobehub/chat 1.42.4 → 1.42.6
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,56 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.42.6](https://github.com/lobehub/lobe-chat/compare/v1.42.5...v1.42.6)
|
6
|
+
|
7
|
+
<sup>Released on **2025-01-03**</sup>
|
8
|
+
|
9
|
+
#### ♻ Code Refactoring
|
10
|
+
|
11
|
+
- **misc**: Fix zero-sized element in topic list.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Code refactoring
|
19
|
+
|
20
|
+
- **misc**: Fix zero-sized element in topic list, closes [#5272](https://github.com/lobehub/lobe-chat/issues/5272) ([3e300c4](https://github.com/lobehub/lobe-chat/commit/3e300c4))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
30
|
+
### [Version 1.42.5](https://github.com/lobehub/lobe-chat/compare/v1.42.4...v1.42.5)
|
31
|
+
|
32
|
+
<sup>Released on **2025-01-02**</sup>
|
33
|
+
|
34
|
+
#### 🐛 Bug Fixes
|
35
|
+
|
36
|
+
- **misc**: Fix topic mobile view ui error.
|
37
|
+
|
38
|
+
<br/>
|
39
|
+
|
40
|
+
<details>
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
42
|
+
|
43
|
+
#### What's fixed
|
44
|
+
|
45
|
+
- **misc**: Fix topic mobile view ui error, closes [#5266](https://github.com/lobehub/lobe-chat/issues/5266) ([421a1b3](https://github.com/lobehub/lobe-chat/commit/421a1b3))
|
46
|
+
|
47
|
+
</details>
|
48
|
+
|
49
|
+
<div align="right">
|
50
|
+
|
51
|
+
[](#readme-top)
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
5
55
|
### [Version 1.42.4](https://github.com/lobehub/lobe-chat/compare/v1.42.3...v1.42.4)
|
6
56
|
|
7
57
|
<sup>Released on **2025-01-02**</sup>
|
package/changelog/v1.json
CHANGED
@@ -1,4 +1,22 @@
|
|
1
1
|
[
|
2
|
+
{
|
3
|
+
"children": {
|
4
|
+
"improvements": [
|
5
|
+
"Fix zero-sized element in topic list."
|
6
|
+
]
|
7
|
+
},
|
8
|
+
"date": "2025-01-03",
|
9
|
+
"version": "1.42.6"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"children": {
|
13
|
+
"fixes": [
|
14
|
+
"Fix topic mobile view ui error."
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"date": "2025-01-02",
|
18
|
+
"version": "1.42.5"
|
19
|
+
},
|
2
20
|
{
|
3
21
|
"children": {
|
4
22
|
"improvements": [
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.42.
|
3
|
+
"version": "1.42.6",
|
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",
|
@@ -318,5 +318,14 @@
|
|
318
318
|
"publishConfig": {
|
319
319
|
"access": "public",
|
320
320
|
"registry": "https://registry.npmjs.org"
|
321
|
+
},
|
322
|
+
"pnpm": {
|
323
|
+
"packageExtensions": {
|
324
|
+
"@inkjs/ui": {
|
325
|
+
"dependencies": {
|
326
|
+
"react": "^18"
|
327
|
+
}
|
328
|
+
}
|
329
|
+
}
|
321
330
|
}
|
322
331
|
}
|
package/src/app/(main)/chat/(workspace)/@topic/features/TopicListContent/ByTimeMode/index.tsx
CHANGED
@@ -54,7 +54,7 @@ const ByTimeMode = memo(() => {
|
|
54
54
|
|
55
55
|
const groupContent = useCallback(
|
56
56
|
(index: number) => {
|
57
|
-
if (index === 0) return
|
57
|
+
if (index === 0) return <div style={{ height: 1 }} />;
|
58
58
|
|
59
59
|
const topicGroup = groups[index];
|
60
60
|
return <TopicGroupItem {...topicGroup} />;
|