diff --git a/client/COPY.json b/client/COPY.json index fbe85900349..12d720221b1 100644 --- a/client/COPY.json +++ b/client/COPY.json @@ -663,6 +663,7 @@ "PULAC_CERULLO_REMINDER_MODAL_OPT_FALSE": "No, continue sending to Dispatch", "PULAC_CERULLO_REMINDER_MODAL_OPT_TRUE": "Yes, notify Pulac Cerullo team of jurisdictional conflict", "ASSIGN_TASK_SUCCESS_MESSAGE": "Task assigned to %s", + "ASSIGN_TASK_SUCCESS_MESSAGE_LEGACY_SUCCESS_TITLE": "You have successfully reassigned this task to %s", "REASSIGN_TASK_SUCCESS_MESSAGE_SCM": "You have successfully assigned %s’s case to %s", "REASSIGN_TASK_SUCCESS_MESSAGE": "You have successfully reassigned this task to %s", "HEARING_ASSIGN_TASK_SUCCESS_MESSAGE_DETAIL": "You can continue to assign tasks to yourself and others using this queue.", diff --git a/client/app/queue/AssignToView.jsx b/client/app/queue/AssignToView.jsx index 2dd65c51958..bd6c3e946a8 100644 --- a/client/app/queue/AssignToView.jsx +++ b/client/app/queue/AssignToView.jsx @@ -137,7 +137,7 @@ class AssignToView extends React.Component { const assignTaskSuccessMessage = { title: taskActionData(this.props).message_title ? sprintf(taskActionData(this.props).message_title, caseNameListItem(), - this.getAssignee()) : sprintf(COPY.ASSIGN_TASK_SUCCESS_MESSAGE, this.getAssignee()), + this.getAssignee()) : sprintf(COPY.ASSIGN_TASK_SUCCESS_MESSAGE_LEGACY_SUCCESS_TITLE, this.getAssignee()), detail: taskActionData(this.props).message_detail || null };