mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
chore(notification bind): team member notification bind hint text (#2295)
adjusting
This commit is contained in:
@@ -267,8 +267,15 @@ const MyInfo = () => {
|
||||
{feConfigs?.isPlus && (
|
||||
<Flex mt={6} alignItems={'center'}>
|
||||
<Box {...labelStyles}>{t('common:user.Notification Receive')}: </Box>
|
||||
<Box flex={1} {...(userInfo?.team.notificationAccount ? {} : { color: 'red.600' })}>
|
||||
{userInfo?.team.notificationAccount || t('common:user.Notification Receive Bind')}
|
||||
<Box
|
||||
flex={1}
|
||||
{...(!userInfo?.team.notificationAccount && userInfo?.permission.isOwner
|
||||
? { color: 'red.600' }
|
||||
: {})}
|
||||
>
|
||||
{userInfo?.team.notificationAccount || userInfo?.permission.isOwner
|
||||
? t('common:user.Notification Receive Bind')
|
||||
: t('user:notification.remind_owner_bind')}
|
||||
</Box>
|
||||
|
||||
{userInfo?.permission.isOwner && (
|
||||
|
Reference in New Issue
Block a user