nesticot commited on
Commit
1bd7669
·
verified ·
1 Parent(s): ae22fb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -538,9 +538,9 @@ app = App(
538
  ui.input_action_button("go", "Generate", class_="btn-primary"),
539
  ui.output_table("result")
540
  )
541
- ),
542
- width='500px'
543
- ),
544
  ui.navset_tab(
545
  ui.nav("MLB", ui.output_plot("plot_mlb", height="1000px", width="1000px")),
546
  ui.nav("AAA", ui.output_plot("plot_aaa", height="1000px", width="1000px")),
@@ -549,6 +549,7 @@ app = App(
549
  ui.nav("A", ui.output_plot("plot_a", height="1000px", width="1000px")),
550
  id="my_tabs"
551
  )
552
- ),
 
553
  server # ✅ server passed cleanly
554
  )
 
538
  ui.input_action_button("go", "Generate", class_="btn-primary"),
539
  ui.output_table("result")
540
  )
541
+ ,width='500px'),
542
+
543
+
544
  ui.navset_tab(
545
  ui.nav("MLB", ui.output_plot("plot_mlb", height="1000px", width="1000px")),
546
  ui.nav("AAA", ui.output_plot("plot_aaa", height="1000px", width="1000px")),
 
549
  ui.nav("A", ui.output_plot("plot_a", height="1000px", width="1000px")),
550
  id="my_tabs"
551
  )
552
+ )
553
+ ),
554
  server # ✅ server passed cleanly
555
  )