Feat: Render WikipediaForm and BaiduForm with shadcn-ui. #3221 (#5564)

### What problem does this PR solve?

Feat: Render WikipediaForm and BaiduForm with shadcn-ui. #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-03-03 19:01:15 +08:00
committed by GitHub
parent c813c1ff4c
commit 1075b975c5
8 changed files with 215 additions and 122 deletions

View File

@ -50,7 +50,7 @@ export function TopNFormField({ max = 30 }: SimilaritySliderFormFieldProps) {
name={'top_n'}
render={({ field }) => (
<FormItem>
<FormLabel>{t('topN')}</FormLabel>
<FormLabel tooltip={t('topNTip')}>{t('topN')}</FormLabel>
<FormControl>
<SingleFormSlider {...field} max={max}></SingleFormSlider>
</FormControl>