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 authored and adamruzicka committed Jul 10, 2024
1 parent bb6761f commit 4f1e557
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 4f1e557

Please sign in to comment.