mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-26 20:02:26 -08:00
minor grammar fixes
This commit is contained in:
parent
98ac9d93bc
commit
4269e8b914
|
@ -504,11 +504,11 @@ export default mixins(
|
||||||
} else if (entry.finished === true) {
|
} else if (entry.finished === true) {
|
||||||
return 'The worklow execution was successful.';
|
return 'The worklow execution was successful.';
|
||||||
} else if (entry.retryOf !== undefined) {
|
} else if (entry.retryOf !== undefined) {
|
||||||
return `The workflow execution was a retry of "${entry.retryOf}" and did fail.<br />New retries have to be started from the original execution.`;
|
return `The workflow execution was a retry of "${entry.retryOf}" and failed.<br />New retries have to be started from the original execution.`;
|
||||||
} else if (entry.retrySuccessId !== undefined) {
|
} 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 {
|
} else {
|
||||||
return 'The workflow execution did fail.';
|
return 'The workflow execution failed.';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async stopExecution (activeExecutionId: string) {
|
async stopExecution (activeExecutionId: string) {
|
||||||
|
|
Loading…
Reference in a new issue