Add the actual fix

This commit is contained in:
Charlie Kolb 2025-11-13 14:22:00 +01:00
parent cb97ba1352
commit 5bdfb4ae2f
No known key found for this signature in database

View File

@ -45,7 +45,7 @@ export class ExecutionData {
name: 'workflowVersionId',
referencedColumnName: 'versionId',
})
workflowHistory: Relation<WorkflowHistory> | null;
workflowHistory: Relation<Omit<WorkflowHistory, 'workflow'> & { workflow: WorkflowData }> | null; // this
@BeforeInsert()
@BeforeUpdate()