export default function()

in src/components/application/details/utilities/task-selection-state.js [7:11]


export default function (props) {
  return (task, index, array) => taskIsSelected(task, props)
    || array.length === 1 ||
    (index === 0 && !props.jobId);
}