From 390630751c07238cedccc1133c30d3f11c8357a9 Mon Sep 17 00:00:00 2001 From: amitk Date: Thu, 11 Feb 2021 23:37:10 +0530 Subject: [PATCH] Workflow play button not shown as finished when workflow execution is aborted --- frontend/src/views/AngularWorkflow.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx index 191a5c81..115a4543 100644 --- a/frontend/src/views/AngularWorkflow.jsx +++ b/frontend/src/views/AngularWorkflow.jsx @@ -566,6 +566,9 @@ const AngularWorkflow = (props) => { } break case "FAILURE": + //When status comes as failure, allow user to start workflow execution + setExecutionRunning(false) + currentnode.removeClass('not-executing-highlight') currentnode.removeClass('executing-highlight') currentnode.removeClass('success-highlight')