Implement branch front end (#13489)

First PR to support workflow branches on frontend
This commit is contained in:
martmull
2025-08-04 16:11:46 +02:00
committed by GitHub
parent 2c87c6fc1b
commit 9a05673093
124 changed files with 3735 additions and 938 deletions
@@ -30,6 +30,10 @@ type BaseWorkflowAction = {
name: string;
type: WorkflowActionType;
settings: WorkflowActionSettings;
position?: {
x: number;
y: number;
};
valid: boolean;
nextStepIds?: string[];
};