diff --git a/document/content/docs/toc.mdx b/document/content/docs/toc.mdx index 0aa88a977..bdb137127 100644 --- a/document/content/docs/toc.mdx +++ b/document/content/docs/toc.mdx @@ -109,6 +109,7 @@ description: FastGPT 文档目录 - [/docs/upgrading/4-12/4124](/docs/upgrading/4-12/4124) - [/docs/upgrading/4-13/4130](/docs/upgrading/4-13/4130) - [/docs/upgrading/4-13/4131](/docs/upgrading/4-13/4131) +- [/docs/upgrading/4-13/4132](/docs/upgrading/4-13/4132) - [/docs/upgrading/4-8/40](/docs/upgrading/4-8/40) - [/docs/upgrading/4-8/41](/docs/upgrading/4-8/41) - [/docs/upgrading/4-8/42](/docs/upgrading/4-8/42) diff --git a/document/content/docs/upgrading/4-13/4132.mdx b/document/content/docs/upgrading/4-13/4132.mdx new file mode 100644 index 000000000..d2c78071c --- /dev/null +++ b/document/content/docs/upgrading/4-13/4132.mdx @@ -0,0 +1,19 @@ +--- +title: 'V4.13.1' +description: 'FastGPT V4.13.1 更新说明' +--- + + +## 🚀 新增内容 + + +## ⚙️ 优化 + +1. 非管理员无法看到团队审计日志。 + +## 🐛 修复 + + +## 🔨 插件更新 + +1. Perplexity search 工具。 \ No newline at end of file diff --git a/document/content/docs/upgrading/4-13/meta.json b/document/content/docs/upgrading/4-13/meta.json index f86b97b14..2d9d37770 100644 --- a/document/content/docs/upgrading/4-13/meta.json +++ b/document/content/docs/upgrading/4-13/meta.json @@ -1,5 +1,5 @@ { "title": "4.13.x", "description": "", - "pages": ["4131", "4130"] + "pages": ["4132", "4131", "4130"] } diff --git a/document/data/doc-last-modified.json b/document/data/doc-last-modified.json index 2f3addd3b..b29bee1ca 100644 --- a/document/data/doc-last-modified.json +++ b/document/data/doc-last-modified.json @@ -111,7 +111,7 @@ "document/content/docs/upgrading/4-12/4122.mdx": "2025-09-07T14:41:48+08:00", "document/content/docs/upgrading/4-12/4123.mdx": "2025-09-07T20:55:14+08:00", "document/content/docs/upgrading/4-12/4124.mdx": "2025-09-17T22:29:56+08:00", - "document/content/docs/upgrading/4-13/4130.mdx": "2025-09-26T13:32:15+08:00", + "document/content/docs/upgrading/4-13/4130.mdx": "2025-09-30T16:00:10+08:00", "document/content/docs/upgrading/4-13/4131.mdx": "2025-09-30T15:47:06+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", diff --git a/projects/app/src/pages/account/team/index.tsx b/projects/app/src/pages/account/team/index.tsx index c413572b2..c19ff594b 100644 --- a/projects/app/src/pages/account/team/index.tsx +++ b/projects/app/src/pages/account/team/index.tsx @@ -75,7 +75,9 @@ const Team = () => { { label: t('account_team:org'), value: TeamTabEnum.org }, { label: t('account_team:group'), value: TeamTabEnum.group }, { label: t('account_team:permission'), value: TeamTabEnum.permission }, - { label: t('account_team:audit_log'), value: TeamTabEnum.audit } + ...(userInfo?.team.permission.hasManagePer + ? [{ label: t('account_team:audit_log'), value: TeamTabEnum.audit }] + : []) ]} px={'1rem'} value={teamTab}