:zip: Improve display of retry

This commit is contained in:
Jan Oberhauser 2019-08-08 20:24:37 +02:00
parent 193dd210ff
commit abb0a52b08

View file

@ -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) {