From cb6636486c40672f370bb79917b893795083ea1c Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 23 Jan 2024 15:09:22 -0300 Subject: [PATCH] Add is_component property to FlowType --- src/frontend/src/types/flow/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/types/flow/index.ts b/src/frontend/src/types/flow/index.ts index b5aa39538..300fa9ee3 100644 --- a/src/frontend/src/types/flow/index.ts +++ b/src/frontend/src/types/flow/index.ts @@ -7,6 +7,7 @@ export type FlowType = { data: ReactFlowJsonObject | null; description: string; style?: FlowStyleType; + is_component?: boolean; }; export type NodeType = {