From ac835a6e81fbb7ae77ec38975ecf012151d16dcf Mon Sep 17 00:00:00 2001 From: Paillat Date: Thu, 22 Feb 2024 15:13:08 +0100 Subject: [PATCH] Change engine_row from gr.Row to gr.Column --- ui/gradio_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/gradio_ui.py b/ui/gradio_ui.py index d74c064..8192055 100644 --- a/ui/gradio_ui.py +++ b/ui/gradio_ui.py @@ -75,7 +75,7 @@ class GenerateUI: inputs.append(engine_dropdown) engine_rows = [] for i, engine in enumerate(engines): - with gr.Row(visible=(i == 0)) as engine_row: + with gr.Column(visible=(i == 0)) as engine_row: gr.Markdown(value=f"## {engine.name}") engine_rows.append(engine_row) options = engine.get_options()