Skip to content

Commit

Permalink
Fixes #37605 - missing formatting in Step Canceled toast
Browse files Browse the repository at this point in the history
  • Loading branch information
MariaAga committed Jun 27, 2024
1 parent ecf5e4f commit 82325f9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ export const cancelStep = (taskId, stepId) => async dispatch => {
key: TASK_STEP_CANCEL,
url: foremanTasksPath(`${taskId}/cancel_step?step_id=${stepId}`),
handleSuccess: () => {
dispatch(addToast(successToastData(`${stepId} {__('Step Canceled')}`)));
dispatch(
addToast(successToastData(`${stepId} ${__('Step Canceled')}`))
);
},
handleError: error => {
dispatch(
Expand Down

0 comments on commit 82325f9

Please sign in to comment.