diff --git a/console/src/container/modal/task-new.tsx b/console/src/container/modal/task-new.tsx index aa4a55fb..91ec125a 100644 --- a/console/src/container/modal/task-new.tsx +++ b/console/src/container/modal/task-new.tsx @@ -28,7 +28,7 @@ class Task extends React.Component { values.partitionIdList = typeof partitionIdList === 'string' ? values.partitionIdList.split(',') : []; if (this.getDisabled()) { const { taskId } = operation.taskDetail; - modifyTask({ throttle, taskId, action: 'modify' }).then(() => { + modifyTask({ throttle: values.throttle, taskId, action: 'modify' }).then(() => { notification.success({ message: '修改成功' }); operation.getTask(); modal.close();