fix(ui): default controlnet autoprocess to true (#3513)

I had accidentally defaulted it to false
This commit is contained in:
blessedcoolant 2023-06-08 01:56:53 +12:00 committed by GitHub
commit 0a50e2638c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ export const initialControlNet: Omit<ControlNetConfig, 'controlNetId'> = {
processorType: 'canny_image_processor', processorType: 'canny_image_processor',
processorNode: CONTROLNET_PROCESSORS.canny_image_processor processorNode: CONTROLNET_PROCESSORS.canny_image_processor
.default as RequiredCannyImageProcessorInvocation, .default as RequiredCannyImageProcessorInvocation,
shouldAutoConfig: false, shouldAutoConfig: true,
}; };
export type ControlNetConfig = { export type ControlNetConfig = {