4.8.10 test (#2401)

* perf: i18n

* perf: i18n and img tip

* perf: readme

* perf: hide tool ai response

* fix: copy app

* fix: parse image url regx

* perf: folder collection forbid update
This commit is contained in:
Archer
2024-08-16 13:09:17 +08:00
committed by GitHub
parent 5bf0dd0ef1
commit 61347d9aaa
29 changed files with 358 additions and 296 deletions

View File

@@ -1,8 +1,8 @@
import React from 'react';
import { Box, Flex, useTheme, Grid, type GridProps, theme, Image, Radio } from '@chakra-ui/react';
import MyIcon from '@fastgpt/web/components/common/Icon';
import { Box, Flex, useTheme, Grid, type GridProps, Radio } from '@chakra-ui/react';
import { useTranslation } from 'next-i18next';
import { useToast } from '@fastgpt/web/hooks/useToast';
import Avatar from '@fastgpt/web/components/common/Avatar';
// @ts-ignore
interface Props extends GridProps {
@@ -53,7 +53,8 @@ const MyRadio = ({
{...(value === item.value
? {
borderColor: 'primary.400',
bg: 'primary.50'
bg: 'primary.50',
color: 'primary.600'
}
: {
bg: 'myWhite.300',
@@ -74,11 +75,7 @@ const MyRadio = ({
>
{!!item.icon && (
<>
{item.icon.startsWith('/') ? (
<Image src={item.icon} mr={'14px'} w={iconSize} alt={''} fill={'primary.600'} />
) : (
<MyIcon mr={'14px'} name={item.icon as any} w={iconSize} fill={'primary.600'} />
)}
<Avatar src={item.icon} w={iconSize} mr={'14px'} />
</>
)}
<Box pr={hiddenCircle ? 0 : 2} flex={'1 0 0'}>

View File

@@ -136,7 +136,7 @@ const AIChatSettingsModal = ({
{t('common:core.ai.Support tool')}
<QuestionTip ml={1} label={t('common:core.module.template.AI support tool tip')} />
</Box>
<Box flex={1} ml={'10px'}>
<Box flex={1}>
{selectedModel?.toolChoice || selectedModel?.functionCall
? t('common:common.support')
: t('common:common.not_support')}

View File

@@ -50,7 +50,7 @@ const ChatFunctionTip = ({ type }: { type: `${FnTypeEnum}` }) => {
imgUrl: '/imgs/app/welcome.svg'
},
[FnTypeEnum.file]: {
icon: '/imgs/app/welcome-icon.svg',
icon: '/imgs/app/fileinput.svg',
title: t('app:file_upload'),
desc: t('app:file_upload_tip'),
imgUrl: '/imgs/app/fileUploadPlaceholder.png'

View File

@@ -112,13 +112,13 @@ const StandardPlanContentList = ({
{!!planContent.permissionReRank && (
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>{t('chat:rearrangement')}</Box>
<Box color={'myGray.600'}>{t('support.wallet.subscription.rerank')}</Box>
</Flex>
)}
{!!planContent.permissionWebsiteSync && (
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>{t('chat:web_site_sync')}</Box>
<Box color={'myGray.600'}>{t('support.wallet.subscription.web_site_sync')}</Box>
</Flex>
)}
</Grid>