1
0
Fork 0

fix(gui): allow max safe seed constant

This commit is contained in:
Sean Sube 2023-01-08 15:01:44 -06:00
parent d1768b1bd1
commit 477d89b6fc
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ export const CONFIG_DEFAULTS: ConfigRanges<Required<Img2ImgParams & Txt2ImgParam
seed: { seed: {
default: -1, default: -1,
min: -1, min: -1,
// eslint-disable-next-line @typescript-eslint/no-magic-numbers
max: (2 ** 32) - 1, max: (2 ** 32) - 1,
step: 1, step: 1,
}, },