chore(web): strong type (#1259)

This commit is contained in:
Rhon Joe
2023-10-07 17:42:16 +08:00
committed by GitHub
parent 657fa80f4d
commit 52bec63275
4 changed files with 46 additions and 36 deletions

View File

@@ -127,7 +127,7 @@ const DatasetUpdateForm = ({ datasetId }: DatasetUpdateFormProps) => {
{(step === 2 && (!datasetId || (datasetId && !!detail))) && <StepTwo
hasSetAPIKEY={!!embeddingsDefaultModel}
onSetting={showSetAPIKey}
indexingType={detail?.indexing_technique || ''}
indexingType={detail?.indexing_technique}
datasetId={datasetId}
dataSourceType={dataSourceType}
files={fileList.map(file => file.file)}