From 93e08df849470337416013207aee7def6be42b6f Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Wed, 3 Jan 2024 07:35:12 +1100 Subject: [PATCH] fix(ui): min fallback on nodes number fields -> -NUMPY_RAND_MAX --- .../Invocation/fields/inputs/NumberFieldInputComponent.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/fields/inputs/NumberFieldInputComponent.tsx b/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/fields/inputs/NumberFieldInputComponent.tsx index d050e9b22d..ebefc5f98c 100644 --- a/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/fields/inputs/NumberFieldInputComponent.tsx +++ b/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/fields/inputs/NumberFieldInputComponent.tsx @@ -1,4 +1,4 @@ -import { NUMPY_RAND_MAX, NUMPY_RAND_MIN } from 'app/constants'; +import { NUMPY_RAND_MAX } from 'app/constants'; import { useAppDispatch } from 'app/store/storeHooks'; import { InvNumberInput } from 'common/components/InvNumberInput/InvNumberInput'; import { fieldNumberValueChanged } from 'features/nodes/store/nodesSlice'; @@ -63,9 +63,10 @@ const NumberFieldInputComponent = ( );