From 8992c8d54d6b49efd81fa9105fb498aa286a75cc Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Mon, 17 Jun 2024 15:29:47 -0300 Subject: [PATCH] Fixed edited not appearing after regrouping and pasting --- src/frontend/src/types/api/index.ts | 1 + src/frontend/src/types/components/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/frontend/src/types/api/index.ts b/src/frontend/src/types/api/index.ts index 1b6705097..8d7d9a7e1 100644 --- a/src/frontend/src/types/api/index.ts +++ b/src/frontend/src/types/api/index.ts @@ -19,6 +19,7 @@ export type APIClassType = { template: APITemplateType; display_name: string; icon?: string; + edited?: boolean; is_input?: boolean; is_output?: boolean; conditional_paths?: Array; diff --git a/src/frontend/src/types/components/index.ts b/src/frontend/src/types/components/index.ts index 12a70bb20..b69346fb9 100644 --- a/src/frontend/src/types/components/index.ts +++ b/src/frontend/src/types/components/index.ts @@ -479,6 +479,7 @@ export type nodeToolbarType = { description: string; display_name: string; documentation: string; + edited: boolean; template: APITemplateType; }; value: void;