fix(editor): Fix AI Node Logs View to Filter Duplicate Executions (#15049)

Co-authored-by: autologie <suguru@n8n.io>
This commit is contained in:
oleg
2025-05-07 08:55:58 +02:00
committed by GitHub
parent 51190255c8
commit 86807978c1
7 changed files with 728 additions and 11 deletions

View File

@@ -43,6 +43,7 @@ import type {
IPersonalizationSurveyAnswersV4,
AnnotationVote,
ITaskData,
ISourceData,
} from 'n8n-workflow';
import type {
@@ -189,6 +190,7 @@ export interface IAiDataContent {
data: INodeExecutionData[] | null;
inOut: 'input' | 'output';
type: NodeConnectionType;
source?: Array<ISourceData | null>;
metadata: {
executionTime: number;
startTime: number;