+
+
+ {{ $locale.baseText('executionDetails.newMessage') }}
+
+
+ {{ $locale.baseText('executionsList.stopExecution') }}
+
+
+
@@ -34,7 +42,14 @@
{{ executionUIDetails.label }}
{{ ' ' }}
-
+
+ | ID#{{ execution.id }}
+
+
{{
$locale.baseText('executionDetails.runningTimeRunning', {
interpolate: { time: executionUIDetails?.runningTime },
@@ -55,13 +70,6 @@
}}
| ID#{{ execution.id }}
-
- | ID#{{ execution.id }}
-
{{ $locale.baseText('executionDetails.retry') }}
{
['waiting', 'waiting', i18n.baseText('executionsList.waiting')],
['canceled', 'unknown', i18n.baseText('executionsList.canceled')],
['running', 'running', i18n.baseText('executionsList.running')],
- ['new', 'running', i18n.baseText('executionsList.running')],
+ ['new', 'new', i18n.baseText('executionsList.new')],
['success', 'success', i18n.baseText('executionsList.succeeded')],
['error', 'error', i18n.baseText('executionsList.error')],
['crashed', 'error', i18n.baseText('executionsList.error')],
diff --git a/packages/editor-ui/src/composables/useExecutionHelpers.ts b/packages/editor-ui/src/composables/useExecutionHelpers.ts
index b39e03c5c1..a00f5b639a 100644
--- a/packages/editor-ui/src/composables/useExecutionHelpers.ts
+++ b/packages/editor-ui/src/composables/useExecutionHelpers.ts
@@ -7,6 +7,7 @@ export interface IExecutionUIData {
label: string;
startTime: string;
runningTime: string;
+ showTimestamp: boolean;
}
export function useExecutionHelpers() {
@@ -18,14 +19,20 @@ export function useExecutionHelpers() {
startTime: formatDate(execution.startedAt),
label: 'Status unknown',
runningTime: '',
+ showTimestamp: true,
};
- if (execution.status === 'waiting') {
+ if (execution.status === 'new') {
+ status.name = 'new';
+ status.label = i18n.baseText('executionsList.new');
+ status.showTimestamp = false;
+ } else if (execution.status === 'waiting') {
status.name = 'waiting';
status.label = i18n.baseText('executionsList.waiting');
+ status.showTimestamp = false;
} else if (execution.status === 'canceled') {
status.label = i18n.baseText('executionsList.canceled');
- } else if (execution.status === 'running' || execution.status === 'new') {
+ } else if (execution.status === 'running') {
status.name = 'running';
status.label = i18n.baseText('executionsList.running');
} else if (execution.status === 'success') {
diff --git a/packages/editor-ui/src/plugins/i18n/locales/en.json b/packages/editor-ui/src/plugins/i18n/locales/en.json
index 8d00e109e5..47ca00315f 100644
--- a/packages/editor-ui/src/plugins/i18n/locales/en.json
+++ b/packages/editor-ui/src/plugins/i18n/locales/en.json
@@ -636,6 +636,7 @@
"executionDetails.executionWaiting": "Execution waiting",
"executionDetails.executionWasSuccessful": "Execution was successful",
"executionDetails.of": "of",
+ "executionDetails.newMessage": "Execution waiting in the queue.",
"executionDetails.openWorkflow": "Open Workflow",
"executionDetails.readOnly.readOnly": "Read only",
"executionDetails.readOnly.youreViewingTheLogOf": "You're viewing the log of a previous execution. You cannot
\n\t\tmake changes since this execution already occurred. Make changes
\n\t\tto this workflow by clicking on its name on the left.",
@@ -680,6 +681,7 @@
"executionsList.modes.trigger": "trigger",
"executionsList.modes.webhook": "webhook",
"executionsList.name": "@:_reusableBaseText.name",
+ "executionsList.new": "Queued",
"executionsList.openPastExecution": "Open Past Execution",
"executionsList.retryExecution": "Retry execution",
"executionsList.retryOf": "Retry of",