Unverified Commit 0ec987fa authored by mvdbeek's avatar mvdbeek
Browse files
parent e2d737ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ export class Services {
    async createWorkflow(workflow) {
        const url = withPrefix("/api/workflows");
        try {
            const { data } = await axios.post(url, { workflow: toSimple(workflow.id, workflow) });
            const { data } = await axios.post(url, { workflow: toSimple(workflow.id, workflow), from_tool_form: true });
            return data;
        } catch (e) {
            rethrowSimple(e);