Update app.py
Browse files
app.py
CHANGED
@@ -222,7 +222,7 @@ with block:
|
|
222 |
with gr.Tab(hivex_env["title"]) as env_tabs:
|
223 |
# TASK TABS
|
224 |
for j in range(0, hivex_env["task_count"]):
|
225 |
-
with gr.TabItem(f"Task {j}: {get_task(hivex_env[
|
226 |
with gr.Row():
|
227 |
gr_dataframe = gr.components.Dataframe(value=get_data(hivex_env["hivex_env"], j, path_), headers=["User", "Model"], datatype=["markdown", "markdown"], row_count=(100, 'fixed'))
|
228 |
|
|
|
222 |
with gr.Tab(hivex_env["title"]) as env_tabs:
|
223 |
# TASK TABS
|
224 |
for j in range(0, hivex_env["task_count"]):
|
225 |
+
with gr.TabItem(f"Task {j}: {get_task(hivex_env['hivex_env'], j, path_)}"):
|
226 |
with gr.Row():
|
227 |
gr_dataframe = gr.components.Dataframe(value=get_data(hivex_env["hivex_env"], j, path_), headers=["User", "Model"], datatype=["markdown", "markdown"], row_count=(100, 'fixed'))
|
228 |
|