From b7002610eaba9b579a76f74ce835e22272664c98 Mon Sep 17 00:00:00 2001 From: jpellizzari Date: Tue, 20 Dec 2016 08:12:06 -0800 Subject: [PATCH] Fixed linting error --- client/app/scripts/components/terminal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/scripts/components/terminal.js b/client/app/scripts/components/terminal.js index 087131b7a..ed9133c36 100644 --- a/client/app/scripts/components/terminal.js +++ b/client/app/scripts/components/terminal.js @@ -399,7 +399,7 @@ class Terminal extends React.Component { } function mapStateToProps(state, ownProps) { - const controlStatus = state.get('controlPipes').find((pipe) => + const controlStatus = state.get('controlPipes').find(pipe => pipe.get('nodeId') === ownProps.pipe.get('nodeId') ); return { controlStatus };