Fixed edited not appearing after regrouping and pasting

This commit is contained in:
Lucas Oliveira 2024-06-17 15:29:47 -03:00
commit 8992c8d54d
2 changed files with 2 additions and 0 deletions

View file

@ -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<string>;

View file

@ -479,6 +479,7 @@ export type nodeToolbarType = {
description: string;
display_name: string;
documentation: string;
edited: boolean;
template: APITemplateType;
};
value: void;