From 71003be6b864e1b5a554e623ab78c23b4421fc9c Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Fri, 19 May 2023 15:55:15 +1000 Subject: [PATCH] fix(ui): add value to conditioning field --- invokeai/frontend/web/src/features/nodes/types/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/invokeai/frontend/web/src/features/nodes/types/types.ts b/invokeai/frontend/web/src/features/nodes/types/types.ts index 998d8a7956..745584f244 100644 --- a/invokeai/frontend/web/src/features/nodes/types/types.ts +++ b/invokeai/frontend/web/src/features/nodes/types/types.ts @@ -180,6 +180,7 @@ export type LatentsInputFieldValue = FieldValueBase & { export type ConditioningInputFieldValue = FieldValueBase & { type: 'conditioning'; + value?: string; }; export type ControlInputFieldValue = FieldValueBase & {