From a1bb72291061a8fa5288b8a9fd88667b9e0dd475 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Mon, 11 Mar 2024 14:04:52 -0400 Subject: [PATCH] Refactor progress bars out of invocation summary. --- .../InvocationJobsProgressBar.vue | 63 +++++++++++ .../InvocationStepsProgressBar.vue | 68 +++++++++++ .../WorkflowInvocationSummary.vue | 106 ++---------------- 3 files changed, 143 insertions(+), 94 deletions(-) create mode 100644 client/src/components/WorkflowInvocationState/InvocationJobsProgressBar.vue create mode 100644 client/src/components/WorkflowInvocationState/InvocationStepsProgressBar.vue diff --git a/client/src/components/WorkflowInvocationState/InvocationJobsProgressBar.vue b/client/src/components/WorkflowInvocationState/InvocationJobsProgressBar.vue new file mode 100644 index 000000000000..962262095e3d --- /dev/null +++ b/client/src/components/WorkflowInvocationState/InvocationJobsProgressBar.vue @@ -0,0 +1,63 @@ + + + diff --git a/client/src/components/WorkflowInvocationState/InvocationStepsProgressBar.vue b/client/src/components/WorkflowInvocationState/InvocationStepsProgressBar.vue new file mode 100644 index 000000000000..e7fe24d39fe6 --- /dev/null +++ b/client/src/components/WorkflowInvocationState/InvocationStepsProgressBar.vue @@ -0,0 +1,68 @@ + + + diff --git a/client/src/components/WorkflowInvocationState/WorkflowInvocationSummary.vue b/client/src/components/WorkflowInvocationState/WorkflowInvocationSummary.vue index 230859b8bd88..4ff1fc0e9960 100644 --- a/client/src/components/WorkflowInvocationState/WorkflowInvocationSummary.vue +++ b/client/src/components/WorkflowInvocationState/WorkflowInvocationSummary.vue @@ -1,26 +1,17 @@