From 96909235167edc0d1a9b5ed4cc104efea92f522b Mon Sep 17 00:00:00 2001 From: Wang Qi Date: Wed, 29 Apr 2026 16:47:42 +0800 Subject: [PATCH] Fix delete graphrag raptor (#14469) ### What problem does this PR solve? Fix delete graphrag raptor ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/utils/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/utils/api.ts b/web/src/utils/api.ts index ba204fa769..ec428b65d9 100644 --- a/web/src/utils/api.ts +++ b/web/src/utils/api.ts @@ -85,7 +85,7 @@ export default { traceIndex: (datasetId: string, indexType: string) => `${restAPIv1}/datasets/${datasetId}/index?type=${indexType}`, unbindPipelineTask: (datasetId: string, indexType: string) => - `${restAPIv1}/datasets/${datasetId}/${indexType}`, + `${restAPIv1}/datasets/${datasetId}/${indexType.toLowerCase()}`, pipelineRerun: `${webAPI}/canvas/rerun`, getMetaData: (datasetId: string) => `${restAPIv1}/datasets/${datasetId}/metadata/summary`,