diff --git a/client/containers/workflow/component.vue b/client/containers/workflow/component.vue index 83418d04d..26afecffa 100644 --- a/client/containers/workflow/component.vue +++ b/client/containers/workflow/component.vue @@ -49,6 +49,7 @@ export default { input: undefined, isWorkflowRunning: undefined, parentWorkflowRoute: undefined, + cronSchedule: undefined, result: undefined, wfStatus: undefined, workflow: undefined, @@ -147,6 +148,7 @@ export default { this.history.loading = undefined; this.summary.input = undefined; + this.summary.cronSchedule = undefined; this.summary.isWorkflowRunning = undefined; this.summary.parentWorkflowRoute = undefined; this.summary.result = undefined; @@ -395,6 +397,7 @@ export default { :display-workflow-id="displayWorkflowId" :domain="domain" :input="summary.input" + :cronSchedule="summary.cronSchedule" :isWorkflowRunning="summary.isWorkflowRunning" :parentWorkflowRoute="summary.parentWorkflowRoute" :result="summary.result" diff --git a/client/containers/workflow/helpers/get-summary.js b/client/containers/workflow/helpers/get-summary.js index 8a801f19e..f7970cb8a 100644 --- a/client/containers/workflow/helpers/get-summary.js +++ b/client/containers/workflow/helpers/get-summary.js @@ -38,6 +38,7 @@ const getSummary = ({ clusterName, events, isWorkflowRunning, workflow }) => { return { input: undefined, isWorkflowRunning, + cronSchedule: undefined, parentWorkflowRoute: undefined, result: undefined, wfStatus: undefined, @@ -77,6 +78,7 @@ const getSummary = ({ clusterName, events, isWorkflowRunning, workflow }) => { return { input, + cronSchedule: firstEvent.details.cronSchedule, isWorkflowRunning, parentWorkflowRoute, result, diff --git a/client/routes/workflow/summary.vue b/client/routes/workflow/summary.vue index 4ffda8d8e..56f0ec2af 100644 --- a/client/routes/workflow/summary.vue +++ b/client/routes/workflow/summary.vue @@ -43,6 +43,7 @@ export default { 'input', 'isWorkflowRunning', 'parentWorkflowRoute', + 'cronSchedule', 'result', 'runId', 'timeFormat', @@ -250,6 +251,10 @@ export default { +