Skip to content

Commit

Permalink
Scenario-7 success banner fix (#19349)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamala-07 authored Sep 1, 2023
1 parent ec0fc6d commit 53ff4e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/COPY.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion client/app/queue/AssignToView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down

0 comments on commit 53ff4e1

Please sign in to comment.