Files
ragflow/web/src/components/page-rank-form-field.tsx
balibabu 3234a15aae Fix: Fixed the issue of retrieval operator text overlapping #3221 (#8652)
### What problem does this PR solve?

Fix: Fixed the issue of retrieval operator text overlapping #3221

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
2025-07-03 19:04:06 +08:00

22 lines
545 B
TypeScript

import { FormLayout } from '@/constants/form';
import { useTranslate } from '@/hooks/common-hooks';
import { SliderInputFormField } from './slider-input-form-field';
export function PageRankFormField() {
const { t } = useTranslate('knowledgeConfiguration');
return (
<SliderInputFormField
name={'pagerank'}
label={t('pageRank')}
tooltip={t('pageRankTip')}
defaultValue={0}
max={100}
min={0}
layout={FormLayout.Horizontal}
></SliderInputFormField>
);
}
export default PageRankFormField;