Skip to content

Commit

Permalink
Fix targets techs issue
Browse files Browse the repository at this point in the history
  • Loading branch information
slonoed committed Aug 5, 2015
1 parent 4395126 commit 8a8c743
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/components/TargetTechs.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ export default class TargetTechs extends Component {
}

render() {
const { target } = this.props;
const techs = groupBy(
values(this.props.techs),
values(this.props.techs).filter(t => t.target === target.id),
t => t.status);

return <div>
Expand Down

0 comments on commit 8a8c743

Please sign in to comment.