feat: highlight the nodes that the workflow passes through #918 (#1423)

### What problem does this PR solve?

feat: highlight the nodes that the workflow passes through #918

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-07-08 17:45:17 +08:00
committed by GitHub
parent c889ef6363
commit f5dc94fc85
2 changed files with 30 additions and 3 deletions

View File

@ -6,7 +6,7 @@ export type DSLComponents = Record<string, IOperator>;
export interface DSL {
components: DSLComponents;
history: any[];
path?: string[];
path?: string[][];
answer?: any[];
graph?: IGraph;
messages: Message[];