Skip to content

Commit

Permalink
add task column to judge queue view (#8944)
Browse files Browse the repository at this point in the history
Resolves #8652
/cc @allyceh 

### Description
Adds the task column to judge queue view (with the task name in `_.startCase`)

<img width="1348" alt="screenshot 2019-01-25 10 16 18" src="https://user-images.githubusercontent.com/2928395/51754521-81fe1980-208a-11e9-915a-9f009ec6053f.png">
  • Loading branch information
joeyyang authored and va-bot committed Jan 28, 2019
1 parent 626f57b commit 03ad024
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/app/queue/JudgeDecisionReviewTaskListView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ class JudgeDecisionReviewTaskListView extends React.PureComponent {
</p>;
} else {
tableContent = <TaskTable
includeTask
includeDetailsLink
includeDocumentId
includeType
Expand Down
2 changes: 1 addition & 1 deletion client/app/queue/components/TaskTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class TaskTableUnconnected extends React.PureComponent<Props> {
} : null;
}

actionNameOfTask = (task: TaskWithAppeal) => CO_LOCATED_ADMIN_ACTIONS[task.label]
actionNameOfTask = (task: TaskWithAppeal) => CO_LOCATED_ADMIN_ACTIONS[task.label] || _.startCase(task.label)

caseTaskColumn = () => {
return this.props.includeTask ? {
Expand Down

0 comments on commit 03ad024

Please sign in to comment.