diff --git a/backend/go-app/walkoff.go b/backend/go-app/walkoff.go index 7be313e8..e2d27443 100644 --- a/backend/go-app/walkoff.go +++ b/backend/go-app/walkoff.go @@ -878,7 +878,7 @@ func handleExecution(id string, workflow shuffle.Workflow, request *http.Request return shuffle.WorkflowExecution{}, fmt.Sprintf(`workflow %s is invalid`, workflow.ID), errors.New("Failed getting workflow") } - workflowExecution, execInfo, _, err := shuffle.PrepareWorkflowExecution(ctx, workflow, request) + workflowExecution, execInfo, _, err := shuffle.PrepareWorkflowExecution(ctx, workflow, request, 10) if err != nil { log.Printf("[WARNING] Failed in prepareExecution: %s", err) return shuffle.WorkflowExecution{}, fmt.Sprintf("Failed preparration: %s", err), err diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx index bc705c30..06e3f820 100644 --- a/frontend/src/views/AngularWorkflow.jsx +++ b/frontend/src/views/AngularWorkflow.jsx @@ -5873,10 +5873,11 @@ const AngularWorkflow = (props) => { disableEnforceFocus={true} hideBackdrop={true} disableBackdropClick={true} - open={conditionsModalOpen} style={{ pointerEvents: "none" }} + open={conditionsModalOpen} PaperProps={{ style: { + pointerEvents: "auto", backgroundColor: surfaceColor, color: "white", minWidth: 800, @@ -6394,6 +6395,10 @@ const AngularWorkflow = (props) => { color="primary" variant="outlined" onClick={() => { + if (conditionsModalOpen) { + return + } + setSourceValue({ name: "source", value: "", @@ -6413,6 +6418,7 @@ const AngularWorkflow = (props) => { action_field: "", id: conditionId, }); + setConditionsModalOpen(true); }} fullWidth @@ -12192,10 +12198,11 @@ const AngularWorkflow = (props) => { // This whole part is redundant. Made it part of Arguments instead. const authenticationModal = authenticationModalOpen ? ( { //if (configureWorkflowModalOpen) { // setSelectedAction({}); @@ -12203,7 +12210,7 @@ const AngularWorkflow = (props) => { }} PaperProps={{ style: { - pointerEvents: "none", + pointerEvents: "auto", backgroundColor: surfaceColor, color: "white", minWidth: 1100, @@ -12353,19 +12360,19 @@ const AngularWorkflow = (props) => { app. - Want help with this app?{" "} + Want help help making or using this app?{" "} - Join the Discord! + Join the community on Discord! - Want to help change this app? + Want to help change this app directly? {selectedApp.reference_info === undefined || selectedApp.reference_info === null ||