Spaces:
Running
Running
yangzhitao
commited on
Commit
·
9719e89
1
Parent(s):
b5bc528
refactor: update column visibility settings in create_submit_tab function to enhance UI behavior
Browse files
app.py
CHANGED
|
@@ -321,7 +321,7 @@ def create_submit_tab(tab_id: int, demo: gr.Blocks):
|
|
| 321 |
with gr.Row():
|
| 322 |
gr.Markdown(EVALUATION_QUEUE_TEXT, elem_classes="markdown-text")
|
| 323 |
|
| 324 |
-
with gr.Column():
|
| 325 |
with gr.Accordion(
|
| 326 |
f"✅ Finished Evaluations ({len(finished_eval_queue_df)})",
|
| 327 |
open=False,
|
|
|
|
| 321 |
with gr.Row():
|
| 322 |
gr.Markdown(EVALUATION_QUEUE_TEXT, elem_classes="markdown-text")
|
| 323 |
|
| 324 |
+
with gr.Column(visible=False, render=False):
|
| 325 |
with gr.Accordion(
|
| 326 |
f"✅ Finished Evaluations ({len(finished_eval_queue_df)})",
|
| 327 |
open=False,
|