From f2b9c2cb4fa5f0e866c1b6f84e44d12ff6653af3 Mon Sep 17 00:00:00 2001 From: anapnoe <124302297+anapnoe@users.noreply.github.com> Date: Fri, 12 May 2023 14:57:05 +0300 Subject: [PATCH] fix typo #137 --- modules/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui.py b/modules/ui.py index 7fe61fd2779..816825aa2e2 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -560,7 +560,7 @@ def create_ui(): elif category == "batch": if not opts.dimensions_and_batch_together: #with FormRow(elem_id="txt2img_column_batch"): - with gr.Row(id="txt2img_column_batch"): + with gr.Row(elem_id="txt2img_column_batch"): batch_count = gr.Slider(minimum=1, step=1, label='Batch count', value=1, elem_id="txt2img_batch_count") batch_size = gr.Slider(minimum=1, maximum=8, step=1, label='Batch size', value=1, elem_id="txt2img_batch_size")