Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated copy in label for LIT_SUPPORT_PULAC_CERULLO task action #14162

Merged
merged 2 commits into from
May 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/repositories/task_action_repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def add_schedule_hearing_task_admin_actions_data(task, _user)
}
end

def assign_to_pulac_cerullo_data(_task, _user)
def flag_conflict_of_jurisdiction_data(_task, _user)
org = PulacCerullo.singleton
{
selected: org,
Expand Down
6 changes: 3 additions & 3 deletions client/constants/TASK_ACTIONS.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@
"func": "return_to_attorney_data"
},
"LIT_SUPPORT_PULAC_CERULLO": {
"label": "Notify Pulac Cerullo team of CAVC Jurisdictional Conflict",
"value": "modal/assign_to_pulac_cerullo",
"func": "assign_to_pulac_cerullo_data"
"label": "Notify Litigation Support of Possible Conflict of Jurisdiction",
"value": "modal/flag_conflict_of_jurisdiction",
"func": "flag_conflict_of_jurisdiction_data"
},
"MARK_COMPLETE": {
"label": "Mark task complete",
Expand Down
6 changes: 3 additions & 3 deletions client/test/karma/queue/mtv/sample.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ export const tasks = [
}
},
{
label: 'Notify Pulac Cerullo team of CAVC Jurisdictional Conflict',
value: 'modal/assign_to_pulac_cerullo',
func: 'assign_to_pulac_cerullo_data',
label: 'Notify Litigation Support of Possible Conflict of Jurisdiction',
value: 'modal/flag_conflict_of_jurisdiction',
func: 'flag_conflict_of_jurisdiction_data',
data: {
selected: {
id: 6,
Expand Down