mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-30 09:24:54 +00:00
fix: bind notification account (#2297)
This commit is contained in:
parent
7141189102
commit
b4f3a77b01
|
|
@ -273,9 +273,11 @@ const MyInfo = () => {
|
|||
? { color: 'red.600' }
|
||||
: {})}
|
||||
>
|
||||
{userInfo?.team.notificationAccount || userInfo?.permission.isOwner
|
||||
? t('common:user.Notification Receive Bind')
|
||||
: t('user:notification.remind_owner_bind')}
|
||||
{userInfo?.team.notificationAccount
|
||||
? userInfo?.team.notificationAccount
|
||||
: userInfo?.permission.isOwner
|
||||
? t('common:user.Notification Receive Bind')
|
||||
: t('user:notification.remind_owner_bind')}
|
||||
</Box>
|
||||
|
||||
{userInfo?.permission.isOwner && (
|
||||
|
|
|
|||
Loading…
Reference in New Issue