fix: CFG Scale min value reset to zero (#8691)

No longer needed coz Z Image works at 1.0
This commit is contained in:
blessedcoolant 2025-12-24 05:57:30 +05:30 committed by GitHub
parent 5a0b227256
commit f82bcd40fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,9 +7,9 @@ import { useTranslation } from 'react-i18next';
export const CONSTRAINTS = {
initial: 7,
sliderMin: 0,
sliderMin: 1,
sliderMax: 20,
numberInputMin: 0,
numberInputMin: 1,
numberInputMax: 200,
fineStep: 0.1,
coarseStep: 0.5,