fix(ui): default controlnet autoprocess to true

I had accidentally defaulted it to false
This commit is contained in:
psychedelicious 2023-06-07 23:55:24 +10:00
parent 2f383c2598
commit fc7c5da4dd

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 = {