瀏覽代碼

optimize close action on about page (#24342)

tags/1.8.0
lxsummer 2 月之前
父節點
當前提交
e7833b42cd
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 4 行新增4 行删除
  1. 4
    4
      web/app/components/header/account-about/index.tsx

+ 4
- 4
web/app/components/header/account-about/index.tsx 查看文件

@@ -8,7 +8,7 @@ import Button from '@/app/components/base/button'
import type { LangGeniusVersionResponse } from '@/models/common'
import { IS_CE_EDITION } from '@/config'
import DifyLogo from '@/app/components/base/logo/dify-logo'
import { noop } from 'lodash-es'
import { useGlobalPublicStore } from '@/context/global-public-context'

type IAccountSettingProps = {
@@ -27,11 +27,11 @@ export default function AccountAbout({
return (
<Modal
isShow
onClose={noop}
onClose={onCancel}
className='!w-[480px] !max-w-[480px] !px-6 !py-4'
>
<div>
<div className='absolute right-4 top-4 flex h-8 w-8 cursor-pointer items-center justify-center' onClick={onCancel}>
<div className='relative'>
<div className='absolute right-0 top-0 flex h-8 w-8 cursor-pointer items-center justify-center' onClick={onCancel}>
<RiCloseLine className='h-4 w-4 text-text-tertiary' />
</div>
<div className='flex flex-col items-center gap-4 py-8'>

Loading…
取消
儲存