From abb0a52b08093b1b79a9f9f0dccd52be13a4feb4 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 8 Aug 2019 20:24:37 +0200 Subject: [PATCH] :zip: Improve display of retry --- packages/editor-ui/src/components/ExecutionsList.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/editor-ui/src/components/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsList.vue index 8df770b7f3..c59cedda8c 100644 --- a/packages/editor-ui/src/components/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsList.vue @@ -431,6 +431,8 @@ export default mixins( statusTooltipText (entry: IExecutionsSummary): string { if (entry.stoppedAt === undefined) { return 'The worklow is currently executing.'; + } else if (entry.finished === true && entry.retryOf !== undefined) { + return `The workflow execution was a retry of "${entry.retryOf}" and it was successful.`; } else if (entry.finished === true) { return 'The worklow execution was successful.'; } else if (entry.retryOf !== undefined) {