From abc5385bb3db13fc5d00613034e10258f5436ac1 Mon Sep 17 00:00:00 2001 From: Pandas886 Date: Sun, 7 Jan 2024 18:11:58 +0800 Subject: [PATCH] fix get savepoint list of a job (#2942) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 目前请求无法正确传参,导致根据taskId过滤savepoint 列表失效 --- .../src/pages/DataStudio/RightContainer/SavePoints/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dinky-web/src/pages/DataStudio/RightContainer/SavePoints/index.tsx b/dinky-web/src/pages/DataStudio/RightContainer/SavePoints/index.tsx index efbb8131b8..1aead69fa3 100644 --- a/dinky-web/src/pages/DataStudio/RightContainer/SavePoints/index.tsx +++ b/dinky-web/src/pages/DataStudio/RightContainer/SavePoints/index.tsx @@ -63,7 +63,7 @@ const SavePoints = (props: any) => { actionRef={actionRef} rowKey='id' request={(params, sorter, filter) => - postAll(API_CONSTANTS.GET_SAVEPOINT_LIST, { params, sorter, filter }) + postAll(API_CONSTANTS.GET_SAVEPOINT_LIST, { ...params, sorter, filter }) } params={{ taskId: current.id }} columns={columns as ProColumns[]}