animated_routes_react icon indicating copy to clipboard operation
animated_routes_react copied to clipboard

`=` should be `===`

Open herber opened this issue 7 years ago • 0 comments

On line 24 in project_item.js you should use === instead of a single =. = results in over writing the id.

...
let project = projects.filter(p => {
    return (p.id === this.props.match.params.id);
});
...

herber avatar Aug 27 '17 21:08 herber