@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.
@@ -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: main
34
- target_sync_branch: main
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
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#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
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "fixes": [
5
+ "Fixed the topic link dropdown error."
6
+ ]
7
+ },
8
+ "date": "2025-11-25",
9
+ "version": "2.0.0-next.114"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "fixes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/lobehub",
3
- "version": "2.0.0-next.113",
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
- icon: <Icon icon={ExternalLink} />,
102
- key: 'openInNewWindow',
103
- label: t('actions.openInNewWindow'),
104
- onClick: () => {
105
- openTopicInNewWindow(activeId, id);
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);