mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-03 02:55:29 +08:00
### 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)
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
import { FormLayout } from '@/constants/form';
|
||||
import { useTranslate } from '@/hooks/common-hooks';
|
||||
import { SliderInputFormField } from './slider-input-form-field';
|
||||
|
||||
@ -11,6 +12,7 @@ export function AutoKeywordsFormField() {
|
||||
max={30}
|
||||
min={0}
|
||||
tooltip={t('autoKeywordsTip')}
|
||||
layout={FormLayout.Horizontal}
|
||||
></SliderInputFormField>
|
||||
);
|
||||
}
|
||||
@ -25,6 +27,7 @@ export function AutoQuestionsFormField() {
|
||||
max={10}
|
||||
min={0}
|
||||
tooltip={t('autoQuestionsTip')}
|
||||
layout={FormLayout.Horizontal}
|
||||
></SliderInputFormField>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user