Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refined Node execution/validation; flow variable substitution #57

Merged
merged 9 commits into from
Apr 24, 2020
4 changes: 3 additions & 1 deletion front-end/src/API.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,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