mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
:zip: Improve display of retry
This commit is contained in:
@@ -431,6 +431,8 @@ export default mixins(
|
|||||||
statusTooltipText (entry: IExecutionsSummary): string {
|
statusTooltipText (entry: IExecutionsSummary): string {
|
||||||
if (entry.stoppedAt === undefined) {
|
if (entry.stoppedAt === undefined) {
|
||||||
return 'The worklow is currently executing.';
|
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) {
|
} 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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user