From ca63dfe78cd042be8a8e7d00769f1de100971f4c Mon Sep 17 00:00:00 2001 From: dylanbenzi Date: Sat, 29 Nov 2025 23:43:10 -0500 Subject: [PATCH] modify dashboard to allow concurrency --- dashboard.Rmd | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dashboard.Rmd b/dashboard.Rmd index a1f9e8b..025bea3 100644 --- a/dashboard.Rmd +++ b/dashboard.Rmd @@ -54,15 +54,17 @@ all_conus_landfalls <- get_all_conus_landfalls() all_lf_type_storms <- get_all_lf_type_landfalls() +onStop(function() { + disconnect_db() +}) +``` + +```{r} storm_selection <- reactiveValues( storm_year = NULL, storm_name = NULL, storm_basin = NULL, ) - -onStop(function() { - disconnect_db() -}) ``` Home