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
be34b69f
authored
Mar 31, 2025
by
Archer
Committed by
GitHub
Mar 31, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update doc (#4408)
parent
944774ec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
6 deletions
+23
-6
docSite/content/zh-cn/docs/development/upgrading/494.md
+16
-0
packages/global/core/workflow/runtime/utils.ts
+1
-1
projects/app/src/pageComponents/account/team/MemberTable.tsx
+6
-5
No files found.
docSite/content/zh-cn/docs/development/upgrading/494.md
0 → 100644
View file @
be34b69f
---
title
:
'
V4.9.4(进行中)'
description
:
'
FastGPT
V4.9.4
更新说明'
icon
:
'
upgrade'
draft
:
false
toc
:
true
weight
:
796
---
## 🚀 新增内容
1.
SMTP 发送邮件插件
## 🐛 修复
packages/global/core/workflow/runtime/utils.ts
View file @
be34b69f
...
@@ -66,7 +66,7 @@ export const getLastInteractiveValue = (histories: ChatItemType[]) => {
...
@@ -66,7 +66,7 @@ export const getLastInteractiveValue = (histories: ChatItemType[]) => {
};
};
export
const
initWorkflowEdgeStatus
=
(
export
const
initWorkflowEdgeStatus
=
(
edges
:
StoreEdgeItemType
[],
edges
:
StoreEdgeItemType
[]
|
RuntimeEdgeItemType
[]
,
histories
?:
ChatItemType
[]
histories
?:
ChatItemType
[]
):
RuntimeEdgeItemType
[]
=>
{
):
RuntimeEdgeItemType
[]
=>
{
// If there is a history, use the last interactive value
// If there is a history, use the last interactive value
...
...
projects/app/src/pageComponents/account/team/MemberTable.tsx
View file @
be34b69f
...
@@ -57,7 +57,13 @@ const TeamTagModal = dynamic(() => import('@/components/support/user/team/TeamTa
...
@@ -57,7 +57,13 @@ const TeamTagModal = dynamic(() => import('@/components/support/user/team/TeamTa
function
MemberTable
({
Tabs
}:
{
Tabs
:
React
.
ReactNode
})
{
function
MemberTable
({
Tabs
}:
{
Tabs
:
React
.
ReactNode
})
{
const
{
t
}
=
useTranslation
();
const
{
t
}
=
useTranslation
();
const
{
toast
}
=
useToast
();
const
{
toast
}
=
useToast
();
const
{
userInfo
}
=
useUserStore
();
const
{
feConfigs
}
=
useSystemStore
();
const
isSyncMember
=
feConfigs
?.
register_method
?.
includes
(
'sync'
);
const
{
myTeams
,
onSwitchTeam
}
=
useContextSelector
(
TeamContext
,
(
v
)
=>
v
);
// Member status selector
const
statusOptions
=
[
const
statusOptions
=
[
{
{
label
:
t
(
'common:common.All'
),
label
:
t
(
'common:common.All'
),
...
@@ -72,11 +78,6 @@ function MemberTable({ Tabs }: { Tabs: React.ReactNode }) {
...
@@ -72,11 +78,6 @@ function MemberTable({ Tabs }: { Tabs: React.ReactNode }) {
value
:
'inactive'
value
:
'inactive'
}
}
];
];
const
{
userInfo
}
=
useUserStore
();
const
{
feConfigs
}
=
useSystemStore
();
const
isSyncMember
=
feConfigs
?.
register_method
?.
includes
(
'sync'
);
const
{
myTeams
,
onSwitchTeam
}
=
useContextSelector
(
TeamContext
,
(
v
)
=>
v
);
const
[
status
,
setStatus
]
=
useState
<
string
>
();
const
[
status
,
setStatus
]
=
useState
<
string
>
();
const
{
const
{
...
...
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