purple-koala commited on
Commit
55e18c7
·
verified ·
1 Parent(s): 1504343

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -470,12 +470,12 @@ class SADCP_Viewer(param.Parameterized):
470
 
471
 
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
- explorer.metadata_table, height=500, margin=10
 
479
  ),
480
  ),
481
  )
 
470
 
471
 
472
  # Instantiate the SADCP_Viewer class and create a template
 
473
  tabs = pn.Tabs(
474
  ("Plots", pn.Column(explorer.update_plots)),
475
  (
476
  "Metadata",
477
+ pn.Column(
478
+ explorer.metadata_table, explorer.download_button, height=500, margin=10
479
  ),
480
  ),
481
  )