Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
2e2e919d
authored
Aug 26, 2025
by
Archer
Committed by
GitHub
Aug 26, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: chat navbar (#5537)
parent
97047695
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
8 deletions
+10
-8
document/content/docs/upgrading/4-12/4122.mdx
+7
-6
document/data/doc-last-modified.json
+1
-1
projects/app/src/components/Layout/navbar.tsx
+2
-1
No files found.
document/content/docs/upgrading/4-12/4122.mdx
View file @
2e2e919d
...
@@ -24,12 +24,13 @@ description: 'FastGPT V4.12.2 更新说明'
...
@@ -24,12 +24,13 @@ description: 'FastGPT V4.12.2 更新说明'
1. 独立对话页部分 UI 异常。
1. 独立对话页部分 UI 异常。
2. 独立对话页无法渲染插件交互。
2. 独立对话页无法渲染插件交互。
3. 多选选择器导致的页面崩溃。
3. 独立对话页,使用二级路由时,默认地址错误。
4. 移动端,分享链接,异常加载了登录态对话页的导航。
4. 多选选择器导致的页面崩溃。
5. 用户同步可能出现写冲突问题。
5. 移动端,分享链接,异常加载了登录态对话页的导航。
6. 无法完全关闭系统套餐,会存在空对象默认值,导致鉴权异常。
6. 用户同步可能出现写冲突问题。
7. 工作流,添加团队应用,搜索无效。
7. 无法完全关闭系统套餐,会存在空对象默认值,导致鉴权异常。
8. 应用版本,ref 字段错误,导致无法正常使用。
8. 工作流,添加团队应用,搜索无效。
9. 应用版本,ref 字段错误,导致无法正常使用。
## 🔨 工具更新
## 🔨 工具更新
...
...
document/data/doc-last-modified.json
View file @
2e2e919d
...
@@ -104,7 +104,7 @@
...
@@ -104,7 +104,7 @@
"document/content/docs/upgrading/4-11/4111.mdx"
:
"2025-08-07T22:49:09+08:00"
,
"document/content/docs/upgrading/4-11/4111.mdx"
:
"2025-08-07T22:49:09+08:00"
,
"document/content/docs/upgrading/4-12/4120.mdx"
:
"2025-08-12T22:45:19+08:00"
,
"document/content/docs/upgrading/4-12/4120.mdx"
:
"2025-08-12T22:45:19+08:00"
,
"document/content/docs/upgrading/4-12/4121.mdx"
:
"2025-08-15T22:53:06+08:00"
,
"document/content/docs/upgrading/4-12/4121.mdx"
:
"2025-08-15T22:53:06+08:00"
,
"document/content/docs/upgrading/4-12/4122.mdx"
:
"2025-08-2
5T19:19:43
+08:00"
,
"document/content/docs/upgrading/4-12/4122.mdx"
:
"2025-08-2
6T14:35:39
+08:00"
,
"document/content/docs/upgrading/4-8/40.mdx"
:
"2025-08-02T19:38:37+08:00"
,
"document/content/docs/upgrading/4-8/40.mdx"
:
"2025-08-02T19:38:37+08:00"
,
"document/content/docs/upgrading/4-8/41.mdx"
:
"2025-08-02T19:38:37+08:00"
,
"document/content/docs/upgrading/4-8/41.mdx"
:
"2025-08-02T19:38:37+08:00"
,
"document/content/docs/upgrading/4-8/42.mdx"
:
"2025-08-02T19:38:37+08:00"
,
"document/content/docs/upgrading/4-8/42.mdx"
:
"2025-08-02T19:38:37+08:00"
,
...
...
projects/app/src/components/Layout/navbar.tsx
View file @
2e2e919d
...
@@ -11,6 +11,7 @@ import MyIcon from '@fastgpt/web/components/common/Icon';
...
@@ -11,6 +11,7 @@ import MyIcon from '@fastgpt/web/components/common/Icon';
import
{
useTranslation
}
from
'next-i18next'
;
import
{
useTranslation
}
from
'next-i18next'
;
import
{
useSystemStore
}
from
'@/web/common/system/useSystemStore'
;
import
{
useSystemStore
}
from
'@/web/common/system/useSystemStore'
;
import
MyTooltip
from
'@fastgpt/web/components/common/MyTooltip'
;
import
MyTooltip
from
'@fastgpt/web/components/common/MyTooltip'
;
import
{
getWebReqUrl
}
from
'@fastgpt/web/common/system/utils'
;
export
enum
NavbarTypeEnum
{
export
enum
NavbarTypeEnum
{
normal
=
'normal'
,
normal
=
'normal'
,
...
@@ -147,7 +148,7 @@ const Navbar = ({ unread }: { unread: number }) => {
...
@@ -147,7 +148,7 @@ const Navbar = ({ unread }: { unread: number }) => {
?
{
?
{
onClick
:
()
=
>
{
onClick
:
()
=
>
{
if
(
item
.
link
.
startsWith
(
'/chat'
))
{
if
(
item
.
link
.
startsWith
(
'/chat'
))
{
window
.
open
(
item
.
link
,
'_blank'
,
'noopener,noreferrer'
);
window
.
open
(
getWebReqUrl
(
item
.
link
)
,
'_blank'
,
'noopener,noreferrer'
);
return
;
return
;
}
}
router
.
push
(
item
.
link
);
router
.
push
(
item
.
link
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment