zsolnai commited on
Commit
525c082
Β·
1 Parent(s): ab7c77d

ui: reorder tabs

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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