Many minor fixes to workflow execution algorithms

This commit is contained in:
frikky
2023-02-13 03:45:47 +01:00
parent 3d5192a5a7
commit f3292bc43e
18 changed files with 83 additions and 468 deletions
+1 -1
View File
@@ -13154,7 +13154,7 @@ const AngularWorkflow = (defaultprops) => {
// Ensuring we have the latest version of the result.
// 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.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({});
+2 -2
View File
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from 'react';
import ReactGA from 'react-ga';
import ReactGA from 'react-ga4';
import { useNavigate, Link } from "react-router-dom";
import {isMobile} from "react-device-detect";
@@ -1545,4 +1545,4 @@ const PaymentField = (props) => {
)
}
export default PaymentField;
export default PaymentField;
+1 -2
View File
@@ -1,6 +1,5 @@
import React, {useState } from 'react';
import ReactGA from 'react-ga';
import { useNavigate, Link, useParams } from "react-router-dom";
import {isMobile} from "react-device-detect";
@@ -200,4 +199,4 @@ const PaymentField = (props) => {
)
}
export default PaymentField;
export default PaymentField;