fix: 数据库文档个数变为默认6个#1366 #1370
This commit is contained in:
parent
0eead315d8
commit
5c2129c0c8
@ -9,7 +9,7 @@ import { getModelUniqId } from '@renderer/services/ModelService'
|
|||||||
import { KnowledgeBase } from '@renderer/types'
|
import { KnowledgeBase } from '@renderer/types'
|
||||||
import { Alert, Form, Input, InputNumber, Modal, Select, Slider } from 'antd'
|
import { Alert, Form, Input, InputNumber, Modal, Select, Slider } from 'antd'
|
||||||
import { sortBy } from 'lodash'
|
import { sortBy } from 'lodash'
|
||||||
import { useState } from 'react'
|
import { useEffect, useState } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
|
|
||||||
interface ShowParams {
|
interface ShowParams {
|
||||||
@ -35,6 +35,10 @@ const PopupContainer: React.FC<Props> = ({ base: _base, resolve }) => {
|
|||||||
const { providers } = useProviders()
|
const { providers } = useProviders()
|
||||||
const { base, updateKnowledgeBase } = useKnowledge(_base.id)
|
const { base, updateKnowledgeBase } = useKnowledge(_base.id)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
form.setFieldsValue({ documentCount: base?.documentCount || 6 })
|
||||||
|
}, [base, form])
|
||||||
|
|
||||||
if (!base) {
|
if (!base) {
|
||||||
resolve(null)
|
resolve(null)
|
||||||
return null
|
return null
|
||||||
@ -118,7 +122,6 @@ const PopupContainer: React.FC<Props> = ({ base: _base, resolve }) => {
|
|||||||
style={{ width: '100%' }}
|
style={{ width: '100%' }}
|
||||||
min={1}
|
min={1}
|
||||||
max={15}
|
max={15}
|
||||||
defaultValue={base.documentCount || 6}
|
|
||||||
step={1}
|
step={1}
|
||||||
marks={{ 1: '1', 6: t('knowledge.document_count_default'), 15: '15' }}
|
marks={{ 1: '1', 6: t('knowledge.document_count_default'), 15: '15' }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user