Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
chriddyp committed Feb 1, 2018
1 parent d8e46ed commit f140955
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/actions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function triggerDefaultState(dispatch, getState) {
* and the invisible inputs
*/
if (InputGraph.dependenciesOf(nodeId).length > 0 &&
InputGraph.dependantsOf(nodeId).length == 0 &&
InputGraph.dependantsOf(nodeId).length === 0 &&
has(componentId, getState().paths)
) {
inputNodeIds.push(nodeId);
Expand Down Expand Up @@ -368,8 +368,8 @@ function updateOutput(
};

if (event) {
payload.event = event;
}
payload.event = event;
}

const {inputs, state} = dependenciesRequest.content.find(
dependency => (
Expand Down

0 comments on commit f140955

Please sign in to comment.