Skip to content

Commit

Permalink
fix get savepoint list of a job (DataLinkDC#2942)
Browse files Browse the repository at this point in the history
目前请求无法正确传参,导致根据taskId过滤savepoint 列表失效
  • Loading branch information
Pandas886 authored Jan 7, 2024
1 parent 6f2e9c5 commit abc5385
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<SavePoint>[]}
Expand Down

0 comments on commit abc5385

Please sign in to comment.