From a44b534799f691ad4967a8f20aa7af8dc29582f5 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Mon, 1 May 2023 23:47:39 -0500 Subject: [PATCH] lint(gui): move batch and tiles params onto their own line --- gui/src/components/control/ImageControl.tsx | 126 ++++++++++---------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/gui/src/components/control/ImageControl.tsx b/gui/src/components/control/ImageControl.tsx index 88724e6b..083eac1f 100644 --- a/gui/src/components/control/ImageControl.tsx +++ b/gui/src/components/control/ImageControl.tsx @@ -69,69 +69,6 @@ export function ImageControl(props: ImageControlProps) { } }} /> - { - if (doesExist(props.onChange)) { - props.onChange({ - ...controlState, - batch, - }); - } - }} - /> - { - if (doesExist(props.onChange)) { - props.onChange({ - ...controlState, - tiledVAE: controlState.tiledVAE === false, - }); - } - }} - />} - /> - { - if (doesExist(props.onChange)) { - props.onChange({ - ...controlState, - tiles, - }); - } - }} - /> - { - if (doesExist(props.onChange)) { - props.onChange({ - ...controlState, - overlap, - }); - } - }} - /> - - + + { + if (doesExist(props.onChange)) { + props.onChange({ + ...controlState, + batch, + }); + } + }} + /> + { + if (doesExist(props.onChange)) { + props.onChange({ + ...controlState, + tiledVAE: controlState.tiledVAE === false, + }); + } + }} + />} + /> + { + if (doesExist(props.onChange)) { + props.onChange({ + ...controlState, + tiles, + }); + } + }} + /> + { + if (doesExist(props.onChange)) { + props.onChange({ + ...controlState, + overlap, + }); + } + }} + /> +