Skip to content

Commit

Permalink
Merge pull request #57 from matthew-t-smith/dev/mthomas
Browse files Browse the repository at this point in the history
Refined Node execution/validation; flow variable substitution
  • Loading branch information
reelmatt authored Apr 24, 2020
2 parents 947aefa + 3f9f9b1 commit 8470b51
Show file tree
Hide file tree
Showing 5 changed files with 329 additions and 216 deletions.
4 changes: 3 additions & 1 deletion front-end/src/API.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ export async function getNodes() {
export async function initWorkflow(model) {
const options = {
method: "POST",
body: JSON.stringify(model.options.id)
body: JSON.stringify({
"id": model.options.id
})
};

return fetchWrapper("/workflow/new", options);
Expand Down
Loading

0 comments on commit 8470b51

Please sign in to comment.