feat(editor): Show logs panel in execution history page (#14477)

This commit is contained in:
Suguru Inoue
2025-04-15 13:26:02 +02:00
committed by GitHub
parent dfc40397c1
commit ed19f0f39b
27 changed files with 596 additions and 165 deletions

View File

@@ -23,7 +23,11 @@ import { NodeConnectionTypes, TelemetryHelpers } from 'n8n-workflow';
import { useToast } from '@/composables/useToast';
import { useNodeHelpers } from '@/composables/useNodeHelpers';
import { CHAT_TRIGGER_NODE_TYPE, SINGLE_WEBHOOK_TRIGGERS } from '@/constants';
import {
CHAT_TRIGGER_NODE_TYPE,
IN_PROGRESS_EXECUTION_ID,
SINGLE_WEBHOOK_TRIGGERS,
} from '@/constants';
import { useRootStore } from '@/stores/root.store';
import { useUIStore } from '@/stores/ui.store';
@@ -292,7 +296,7 @@ export function useRunWorkflow(useRunWorkflowOpts: { router: ReturnType<typeof u
// that data which gets reused is already set and data of newly executed
// nodes can be added as it gets pushed in
const executionData: IExecutionResponse = {
id: '__IN_PROGRESS__',
id: IN_PROGRESS_EXECUTION_ID,
finished: false,
mode: 'manual',
status: 'running',