Spaces:
Sleeping
Sleeping
meg-huggingface
commited on
Commit
•
275d535
1
Parent(s):
b14e11d
UI
Browse files
app.py
CHANGED
@@ -156,7 +156,7 @@ with demo:
|
|
156 |
elem_id="search-bar",
|
157 |
)
|
158 |
with gr.Row():
|
159 |
-
with gr.Column():
|
160 |
with gr.Row():
|
161 |
shown_columns = gr.CheckboxGroup(
|
162 |
choices=[
|
@@ -173,7 +173,7 @@ with demo:
|
|
173 |
elem_id="column-select",
|
174 |
interactive=True,
|
175 |
)
|
176 |
-
with gr.Column():
|
177 |
for c in fields(AutoEvalColumn):
|
178 |
if c.displayed_by_default and not c.hidden and not c.never_hidden and not c.advanced and not c.dummy:
|
179 |
gr.Markdown("**" + c.name + "**. " + c.cite, elem_classes="markdown-text")
|
|
|
156 |
elem_id="search-bar",
|
157 |
)
|
158 |
with gr.Row():
|
159 |
+
with gr.Column(scale=1):
|
160 |
with gr.Row():
|
161 |
shown_columns = gr.CheckboxGroup(
|
162 |
choices=[
|
|
|
173 |
elem_id="column-select",
|
174 |
interactive=True,
|
175 |
)
|
176 |
+
with gr.Column(scale=3):
|
177 |
for c in fields(AutoEvalColumn):
|
178 |
if c.displayed_by_default and not c.hidden and not c.never_hidden and not c.advanced and not c.dummy:
|
179 |
gr.Markdown("**" + c.name + "**. " + c.cite, elem_classes="markdown-text")
|