浏览代码

fix: webapp name (#2543)

tags/0.5.7
zxhlyh 1年前
父节点
当前提交
3082093293
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 8 次插入2 次删除
  1. 8
    2
      web/app/components/base/chat/chat-with-history/config-panel/index.tsx

+ 8
- 2
web/app/components/base/chat/chat-with-history/config-panel/index.tsx 查看文件

@@ -3,6 +3,7 @@ import { useTranslation } from 'react-i18next'
import { useChatWithHistoryContext } from '../context'
import Form from './form'
import Button from '@/app/components/base/button'
import AppIcon from '@/app/components/base/app-icon'
import { MessageDotsCircle } from '@/app/components/base/icons/src/vender/solid/communication'
import { Edit02 } from '@/app/components/base/icons/src/vender/line/general'
import { Star06 } from '@/app/components/base/icons/src/vender/solid/shapes'
@@ -40,8 +41,13 @@ const ConfigPanel = () => {
{
showConfigPanelBeforeChat && (
<>
<div className='flex items-center text-2xl font-semibold text-gray-800'>
{appData?.site.icon} {appData?.site.title}
<div className='flex items-center h-8 text-2xl font-semibold text-gray-800'>
<AppIcon
icon={appData?.site.icon}
background='transparent'
size='small'
/>
{appData?.site.title}
</div>
{
appData?.site.description && (

正在加载...
取消
保存