diff --git a/web_app/src/components/SidePanel/DiffusionOptions.tsx b/web_app/src/components/SidePanel/DiffusionOptions.tsx index 46d1059..df52f00 100644 --- a/web_app/src/components/SidePanel/DiffusionOptions.tsx +++ b/web_app/src/components/SidePanel/DiffusionOptions.tsx @@ -427,12 +427,11 @@ const DiffusionOptions = () => { return null } - let disable = settings.enableBrushNet let toolTip = "Strength is a measure of how much noise is added to the base image, which influences how similar the output is to the base image. Higher value means more noise and more different from the base image" - if (disable) { - toolTip = "BrushNet is enabled, Strength is disabled." - } + // if (disable) { + // toolTip = "BrushNet is enabled, Strength is disabled." + // } return ( @@ -440,7 +439,7 @@ const DiffusionOptions = () => { text="Strength" url="https://huggingface.co/docs/diffusers/main/en/using-diffusers/inpaint#strength" toolTip={toolTip} - disabled={disable} + // disabled={disable} /> { onValueChange={(vals) => updateSettings({ sdStrength: vals[0] / 100 }) } - disabled={disable} + // disabled={disable} /> { onNumberValueChange={(val) => { updateSettings({ sdStrength: val }) }} - disabled={disable} + // disabled={disable} /> )