From 4269e8b91468af80d4e468efb60f9a32b5346c7a Mon Sep 17 00:00:00 2001 From: Boris Berenberg Date: Mon, 4 May 2020 16:06:13 -0400 Subject: [PATCH] minor grammar fixes --- packages/editor-ui/src/components/ExecutionsList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/editor-ui/src/components/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsList.vue index 541e77d1b7..e8721bcf9b 100644 --- a/packages/editor-ui/src/components/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsList.vue @@ -504,11 +504,11 @@ export default mixins( } else if (entry.finished === true) { return 'The worklow execution was successful.'; } else if (entry.retryOf !== undefined) { - return `The workflow execution was a retry of "${entry.retryOf}" and did fail.
New retries have to be started from the original execution.`; + return `The workflow execution was a retry of "${entry.retryOf}" and failed.
New retries have to be started from the original execution.`; } else if (entry.retrySuccessId !== undefined) { - return `The workflow execution did fail but the retry "${entry.retrySuccessId}" was successful.`; + return `The workflow execution failed but the retry "${entry.retrySuccessId}" was successful.`; } else { - return 'The workflow execution did fail.'; + return 'The workflow execution failed.'; } }, async stopExecution (activeExecutionId: string) {