Many minor fixes to workflow execution algorithms
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import React, {useEffect, useState} from 'react';
|
||||
|
||||
import ReactGA from 'react-ga';
|
||||
import ReactGA from 'react-ga4';
|
||||
import { useTheme } from '@material-ui/core/styles';
|
||||
import {Link} from 'react-router-dom';
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import React, { useState, useEffect } from "react";
|
||||
import ReactGA from 'react-ga';
|
||||
import ReactGA from 'react-ga4';
|
||||
|
||||
import { useTheme } from "@material-ui/core/styles";
|
||||
import {
|
||||
@@ -314,4 +314,4 @@ const Billing = (props) => {
|
||||
)
|
||||
}
|
||||
|
||||
export default Billing;
|
||||
export default Billing;
|
||||
|
||||
@@ -869,6 +869,7 @@ const Header = (props) => {
|
||||
width: "100%",
|
||||
position: "fixed",
|
||||
minHeight: 60,
|
||||
maxHeight: 60,
|
||||
top: 0,
|
||||
zIndex: 10000,
|
||||
backgroundColor: "inherit",
|
||||
|
||||
@@ -2,7 +2,7 @@ import React, { useState, useEffect } from 'react';
|
||||
import {isMobile} from "react-device-detect";
|
||||
import AppFramework, { usecases } from "../components/AppFramework.jsx";
|
||||
import {Link} from 'react-router-dom';
|
||||
import ReactGA from 'react-ga';
|
||||
import ReactGA from 'react-ga4';
|
||||
|
||||
import { Button, LinearProgress, Typography } from '@material-ui/core';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import React, {useState} from 'react';
|
||||
import { useTheme } from '@material-ui/core/styles';
|
||||
import {isMobile} from "react-device-detect";
|
||||
import ReactGA from 'react-ga';
|
||||
import ReactGA from 'react-ga4';
|
||||
|
||||
import {TextField, Typography, Button} from '@material-ui/core';
|
||||
|
||||
@@ -99,4 +99,4 @@ const Newsletter = (props) => {
|
||||
}
|
||||
|
||||
|
||||
export default Newsletter;
|
||||
export default Newsletter;
|
||||
|
||||
@@ -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({});
|
||||
|
||||
@@ -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,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;
|
||||
|
||||
Reference in New Issue
Block a user