mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
chore(web): new lint setup (#30020)
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
This commit is contained in:
@ -2,26 +2,26 @@
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
import { useTranslation } from 'react-i18next'
|
||||
import GridMask from '@/app/components/base/grid-mask'
|
||||
import { cn } from '@/utils/classnames'
|
||||
import UpgradeBtn from '../upgrade-btn'
|
||||
import VectorSpaceInfo from '../usage-info/vector-space-info'
|
||||
import s from './style.module.css'
|
||||
import { cn } from '@/utils/classnames'
|
||||
import GridMask from '@/app/components/base/grid-mask'
|
||||
|
||||
const VectorSpaceFull: FC = () => {
|
||||
const { t } = useTranslation()
|
||||
|
||||
return (
|
||||
<GridMask wrapperClassName='border border-gray-200 rounded-xl' canvasClassName='rounded-xl' gradientClassName='rounded-xl'>
|
||||
<div className='px-6 py-5'>
|
||||
<div className='flex items-center justify-between'>
|
||||
<GridMask wrapperClassName="border border-gray-200 rounded-xl" canvasClassName="rounded-xl" gradientClassName="rounded-xl">
|
||||
<div className="px-6 py-5">
|
||||
<div className="flex items-center justify-between">
|
||||
<div className={cn(s.textGradient, 'text-base font-semibold leading-[24px]')}>
|
||||
<div>{t('billing.vectorSpace.fullTip')}</div>
|
||||
<div>{t('billing.vectorSpace.fullSolution')}</div>
|
||||
</div>
|
||||
<UpgradeBtn loc='knowledge-add-file' />
|
||||
<UpgradeBtn loc="knowledge-add-file" />
|
||||
</div>
|
||||
<VectorSpaceInfo className='pt-4' />
|
||||
<VectorSpaceInfo className="pt-4" />
|
||||
</div>
|
||||
</GridMask>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user