diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx index 09ba5857..4fd7da88 100644 --- a/frontend/src/views/AngularWorkflow.jsx +++ b/frontend/src/views/AngularWorkflow.jsx @@ -11059,6 +11059,14 @@ const AngularWorkflow = (defaultprops) => { // Especially important IF the result is > 1 Mb in cloud var checkStarted = false if (isCloud && data.results !== undefined && data.results !== null && data.results.length > 0) { + + if (data.execution_argument !== undefined && data.execution_argument !== null && data.execution_argument.includes("too large")) { + setExecutionData({}); + checkStarted = true + start(); + setExecutionRunning(true); + setExecutionRequestStarted(false); + } else { for (var key in data.results) { if (data.results[key].status !== "SUCCESS") { continue @@ -11073,6 +11081,7 @@ const AngularWorkflow = (defaultprops) => { break } } + } } const cur_execution = { diff --git a/frontend/src/views/LoginPage.jsx b/frontend/src/views/LoginPage.jsx index 96c11c56..fd33f22e 100644 --- a/frontend/src/views/LoginPage.jsx +++ b/frontend/src/views/LoginPage.jsx @@ -181,7 +181,8 @@ const LoginDialog = (props) => { setIsLoggedIn(true); - navigate("/workflows") + //navigate("/workflows") + window.location.href = "/workflows" } }) )