purple-koala commited on
Commit
cfc1653
·
verified ·
1 Parent(s): de6e5f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -472,10 +472,11 @@ class SADCP_Viewer(param.Parameterized):
472
  # Instantiate the SADCP_Viewer class and create a template
473
  explorer = SADCP_Viewer()
474
  tabs = pn.Tabs(
 
475
  (
476
- "Metadata",
477
- pn.Column(
478
- explorer.metadata_table, height=500, margin=10
479
  ),
480
  ),
481
  )
 
472
  # Instantiate the SADCP_Viewer class and create a template
473
  explorer = SADCP_Viewer()
474
  tabs = pn.Tabs(
475
+ ("Plots", pn.Column(explorer.update_plots)),
476
  (
477
+ "Metadata",
478
+ pn.Column(
479
+ explorer.metadata_table, height=500, margin=10
480
  ),
481
  ),
482
  )