diff --git a/app/javascript/components/request-workflow-status/data.js b/app/javascript/components/request-workflow-status/data.js index 499222e385c..41ae940c1ff 100644 --- a/app/javascript/components/request-workflow-status/data.js +++ b/app/javascript/components/request-workflow-status/data.js @@ -89,7 +89,7 @@ export const workflowStatusData = (response) => { return undefined; } const rows = response.context ? rowData(response.context) : []; - if (response.context && response.context.State) { + if (response.context && response.context.State && !response.context.State.FinishedTime) { const state = response.context.State; const currentTime = new Date(); // Date Object for current time const oldTime = Date.parse(state.EnteredTime); // ms since start time to entered time in UTC