From c34b6185b3b01d65bef7e9e31cc53a81f8bf3227 Mon Sep 17 00:00:00 2001 From: CaptainB Date: Tue, 30 Jun 2026 16:35:06 +0800 Subject: [PATCH] fix: update file upload category to TEMPORARY_120_MINUTE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1071434@tapd-62980211 --user=刘瑞斌 【知识库】上传文件成功后,退出导入文档界面或者刷新页面,已上传的文件没有从数据库删除 https://www.tapd.cn/62980211/s/1970352 --- ui/src/views/document/ImportWorkflowDocument.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/views/document/ImportWorkflowDocument.vue b/ui/src/views/document/ImportWorkflowDocument.vue index 50eb6f79ee8..0a38a3631f5 100644 --- a/ui/src/views/document/ImportWorkflowDocument.vue +++ b/ui/src/views/document/ImportWorkflowDocument.vue @@ -73,8 +73,8 @@ provide( (file: any, onProgress?: (percent: number, event: any) => void, loading?: Ref) => { return applicationApi.postUploadFileProgress( file, - id as string, - 'KNOWLEDGE', + 'TEMPORARY_120_MINUTE', + 'TEMPORARY_120_MINUTE', onProgress, loading, )