Skip to content

Commit aba0b4c

Browse files
authored
hide audit (#5740)
1 parent 7942805 commit aba0b4c

File tree

5 files changed

+25
-3
lines changed

5 files changed

+25
-3
lines changed

document/content/docs/toc.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ description: FastGPT 文档目录
109109
- [/docs/upgrading/4-12/4124](/docs/upgrading/4-12/4124)
110110
- [/docs/upgrading/4-13/4130](/docs/upgrading/4-13/4130)
111111
- [/docs/upgrading/4-13/4131](/docs/upgrading/4-13/4131)
112+
- [/docs/upgrading/4-13/4132](/docs/upgrading/4-13/4132)
112113
- [/docs/upgrading/4-8/40](/docs/upgrading/4-8/40)
113114
- [/docs/upgrading/4-8/41](/docs/upgrading/4-8/41)
114115
- [/docs/upgrading/4-8/42](/docs/upgrading/4-8/42)
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: 'V4.13.1'
3+
description: 'FastGPT V4.13.1 更新说明'
4+
---
5+
6+
7+
## 🚀 新增内容
8+
9+
10+
## ⚙️ 优化
11+
12+
1. 非管理员无法看到团队审计日志。
13+
14+
## 🐛 修复
15+
16+
17+
## 🔨 插件更新
18+
19+
1. Perplexity search 工具。
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"title": "4.13.x",
33
"description": "",
4-
"pages": ["4131", "4130"]
4+
"pages": ["4132", "4131", "4130"]
55
}

document/data/doc-last-modified.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"document/content/docs/upgrading/4-12/4122.mdx": "2025-09-07T14:41:48+08:00",
112112
"document/content/docs/upgrading/4-12/4123.mdx": "2025-09-07T20:55:14+08:00",
113113
"document/content/docs/upgrading/4-12/4124.mdx": "2025-09-17T22:29:56+08:00",
114-
"document/content/docs/upgrading/4-13/4130.mdx": "2025-09-26T13:32:15+08:00",
114+
"document/content/docs/upgrading/4-13/4130.mdx": "2025-09-30T16:00:10+08:00",
115115
"document/content/docs/upgrading/4-13/4131.mdx": "2025-09-30T15:47:06+08:00",
116116
"document/content/docs/upgrading/4-8/40.mdx": "2025-08-02T19:38:37+08:00",
117117
"document/content/docs/upgrading/4-8/41.mdx": "2025-08-02T19:38:37+08:00",

projects/app/src/pages/account/team/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ const Team = () => {
7575
{ label: t('account_team:org'), value: TeamTabEnum.org },
7676
{ label: t('account_team:group'), value: TeamTabEnum.group },
7777
{ label: t('account_team:permission'), value: TeamTabEnum.permission },
78-
{ label: t('account_team:audit_log'), value: TeamTabEnum.audit }
78+
...(userInfo?.team.permission.hasManagePer
79+
? [{ label: t('account_team:audit_log'), value: TeamTabEnum.audit }]
80+
: [])
7981
]}
8082
px={'1rem'}
8183
value={teamTab}

0 commit comments

Comments
 (0)