feat: tooltip (#7634)
This commit is contained in:
parent
1ba3d3acd6
commit
3be756eaed
93 changed files with 640 additions and 758 deletions
|
|
@ -1,9 +1,9 @@
|
|||
import { useTranslation } from 'react-i18next'
|
||||
import Button from '../../base/button'
|
||||
import Tag from '../../base/tag'
|
||||
import Tooltip from '../../base/tooltip'
|
||||
import { getIcon } from '../common/retrieval-method-info'
|
||||
import s from './style.module.css'
|
||||
import Tooltip from '@/app/components/base/tooltip'
|
||||
import cn from '@/utils/classnames'
|
||||
import type { HitTestingResponse } from '@/models/datasets'
|
||||
import { hitTesting } from '@/service/datasets'
|
||||
|
|
@ -74,8 +74,7 @@ const TextAreaWithButton = ({
|
|||
{t('datasetHitTesting.input.title')}
|
||||
</span>
|
||||
<Tooltip
|
||||
selector={'change-retrieval-method'}
|
||||
htmlContent={t('dataset.retrieval.changeRetrievalMethod')}
|
||||
popupContent={t('dataset.retrieval.changeRetrievalMethod')}
|
||||
>
|
||||
<div
|
||||
onClick={onClickRetrievalMethod}
|
||||
|
|
@ -99,8 +98,7 @@ const TextAreaWithButton = ({
|
|||
{text?.length > 200
|
||||
? (
|
||||
<Tooltip
|
||||
content={t('datasetHitTesting.input.countWarning') as string}
|
||||
selector="hit-testing-warning"
|
||||
popupContent={t('datasetHitTesting.input.countWarning')}
|
||||
>
|
||||
<div>
|
||||
<Tag color="red" className="!text-red-600">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue