@lobehub/lobehub 2.0.0-next.113 → 2.0.0-next.114
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/.github/workflows/sync.yml +2 -2
- package/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/package.json +1 -1
- package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +9 -8
- package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/index.tsx +3 -0
|
@@ -30,8 +30,8 @@ jobs:
|
|
|
30
30
|
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
|
|
31
31
|
with:
|
|
32
32
|
upstream_sync_repo: lobehub/lobe-chat
|
|
33
|
-
upstream_sync_branch:
|
|
34
|
-
target_sync_branch:
|
|
33
|
+
upstream_sync_branch: next
|
|
34
|
+
target_sync_branch: next
|
|
35
35
|
target_repo_token: ${{ secrets.GITHUB_TOKEN }} # automatically generated, no need to set
|
|
36
36
|
test_mode: false
|
|
37
37
|
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.114](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.113...v2.0.0-next.114)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-11-25**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **misc**: Fixed the topic link dropdown error.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **misc**: Fixed the topic link dropdown error, closes [#10408](https://github.com/lobehub/lobe-chat/issues/10408) ([864e3d5](https://github.com/lobehub/lobe-chat/commit/864e3d5))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
## [Version 2.0.0-next.113](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.112...v2.0.0-next.113)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2025-11-25**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/lobehub",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.114",
|
|
4
4
|
"description": "LobeHub - an open-source,comprehensive AI Agent 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",
|
|
@@ -97,15 +97,15 @@ const TopicContent = memo<TopicContentProps>(({ id, title, fav, showMore }) => {
|
|
|
97
97
|
},
|
|
98
98
|
...(isDesktop
|
|
99
99
|
? [
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
},
|
|
100
|
+
{
|
|
101
|
+
icon: <Icon icon={ExternalLink} />,
|
|
102
|
+
key: 'openInNewWindow',
|
|
103
|
+
label: t('actions.openInNewWindow'),
|
|
104
|
+
onClick: () => {
|
|
105
|
+
openTopicInNewWindow(activeId, id);
|
|
107
106
|
},
|
|
108
|
-
|
|
107
|
+
},
|
|
108
|
+
]
|
|
109
109
|
: []),
|
|
110
110
|
{
|
|
111
111
|
type: 'divider',
|
|
@@ -237,6 +237,7 @@ const TopicContent = memo<TopicContentProps>(({ id, title, fav, showMore }) => {
|
|
|
237
237
|
className="topic-more"
|
|
238
238
|
icon={MoreVertical}
|
|
239
239
|
onClick={(e) => {
|
|
240
|
+
e.preventDefault();
|
|
240
241
|
e.stopPropagation();
|
|
241
242
|
}}
|
|
242
243
|
size={'small'}
|
|
@@ -67,6 +67,9 @@ const TopicItem = memo<ConfigCellProps>(({ title, active, id, fav, threadId }) =
|
|
|
67
67
|
<Flexbox style={{ position: 'relative' }}>
|
|
68
68
|
<Link
|
|
69
69
|
onClick={(e) => {
|
|
70
|
+
if (e.button === 0 && (e.metaKey || e.ctrlKey)) {
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
70
73
|
e.preventDefault();
|
|
71
74
|
toggleTopic(id);
|
|
72
75
|
toggleConfig(false);
|