Skip to content

Commit f82bcd4

Browse files
fix: CFG Scale min value reset to zero (#8691)
No longer needed coz Z Image works at 1.0
1 parent 5a0b227 commit f82bcd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

invokeai/frontend/web/src/features/parameters/components/Core/ParamCFGScale.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import { useTranslation } from 'react-i18next';
77

88
export const CONSTRAINTS = {
99
initial: 7,
10-
sliderMin: 0,
10+
sliderMin: 1,
1111
sliderMax: 20,
12-
numberInputMin: 0,
12+
numberInputMin: 1,
1313
numberInputMax: 200,
1414
fineStep: 0.1,
1515
coarseStep: 0.5,

0 commit comments

Comments
 (0)