Spaces:
Sleeping
Sleeping
zsolnai commited on
Commit Β·
525c082
1
Parent(s): ab7c77d
ui: reorder tabs
Browse files
app.py
CHANGED
|
@@ -77,12 +77,12 @@ with gr.Blocks() as demo:
|
|
| 77 |
date_display = gr.Markdown(value="Syncing...")
|
| 78 |
|
| 79 |
with gr.Tabs() as tabs:
|
| 80 |
-
with gr.Tab("π Visual Forecast"):
|
| 81 |
-
chart = gr.Plot()
|
| 82 |
-
|
| 83 |
with gr.Tab("π Detailed Rankings"):
|
| 84 |
table = gr.Dataframe(datatype=["html", "str", "str"], interactive=False)
|
| 85 |
|
|
|
|
|
|
|
|
|
|
| 86 |
refresh_btn = gr.Button("π Sync Latest Predictions", variant="primary")
|
| 87 |
|
| 88 |
# Listeners
|
|
|
|
| 77 |
date_display = gr.Markdown(value="Syncing...")
|
| 78 |
|
| 79 |
with gr.Tabs() as tabs:
|
|
|
|
|
|
|
|
|
|
| 80 |
with gr.Tab("π Detailed Rankings"):
|
| 81 |
table = gr.Dataframe(datatype=["html", "str", "str"], interactive=False)
|
| 82 |
|
| 83 |
+
with gr.Tab("π Visual Forecast"):
|
| 84 |
+
chart = gr.Plot()
|
| 85 |
+
|
| 86 |
refresh_btn = gr.Button("π Sync Latest Predictions", variant="primary")
|
| 87 |
|
| 88 |
# Listeners
|