Skip to content

Commit

Permalink
Fixed minor bug passing flows creation data to api function
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnPapad committed Aug 19, 2019
1 parent 339cc51 commit 70f0fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net-man-app/src/containers/FlowsApp/flowsApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class FlowsApp extends Component {
nodesInfo: flowsSwitchesData
};
console.log("====>data for flows creation: ", flowsCreationData);
networkApi.createFlows()
networkApi.createFlows(flowsCreationData)
.then(data => {

if (data.success)
Expand Down

0 comments on commit 70f0fd2

Please sign in to comment.