From 34dc4a0f5a0f3674bb3c86be1ef9cd8061706383 Mon Sep 17 00:00:00 2001 From: WTW0313 Date: Thu, 26 Jun 2025 10:25:52 +0800 Subject: [PATCH] fix: correct retrieval method property access in Step Three component --- web/app/components/datasets/create/step-three/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/datasets/create/step-three/index.tsx b/web/app/components/datasets/create/step-three/index.tsx index 3b546acb1d..ea5977a02a 100644 --- a/web/app/components/datasets/create/step-three/index.tsx +++ b/web/app/components/datasets/create/step-three/index.tsx @@ -53,7 +53,7 @@ const StepThree = ({ datasetId, datasetName, indexingType, creationCache, retrie batchId={creationCache?.batch || ''} documents={creationCache?.documents as FullDocumentDetail[]} indexingType={creationCache?.dataset?.indexing_technique || indexingType} - retrievalMethod={creationCache?.dataset?.retrieval_model?.search_method || retrievalMethod} + retrievalMethod={creationCache?.dataset?.retrieval_model_dict?.search_method || retrievalMethod} />