modify dashboard to allow concurrency

This commit is contained in:
2025-11-29 23:43:10 -05:00
parent 5644ecbd6b
commit ca63dfe78c
+6 -4
View File
@@ -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