mirror of
https://github.com/dylanbenzi/hurricane_normalization_app.git
synced 2026-07-30 05:08:57 +00:00
update storm selector ui
This commit is contained in:
+13
-8
@@ -199,18 +199,23 @@ Col {data-width=500}
|
||||
#h6("Use either the select inputs or the data table below")
|
||||
|
||||
fluidRow(
|
||||
column(4,
|
||||
selectInput("stormBasin", "Select Basin", choices = "AL")
|
||||
column(6,
|
||||
div(
|
||||
selectInput("stormBasin", "Basin", choices = "AL", width = "100%"),
|
||||
selectInput("stormYear", "Year", choices = loss_storms$storm_year, width = "100%"),
|
||||
selectInput("stormName", "Name", choices = NULL, width = "100%"),
|
||||
actionButton("selectStorm", "Submit", class = "btn-primary rounded", width = "100%")
|
||||
)
|
||||
),
|
||||
column(4,
|
||||
selectInput("stormYear", "Select Year", choices = loss_storms$storm_year)
|
||||
),
|
||||
column(4,
|
||||
selectInput("stormName", "Select Storm", choices = NULL)
|
||||
column(6,
|
||||
HTML('
|
||||
<h5>Select a Storm</h5>
|
||||
|
||||
We are currently tracking 201 CONUS storms with over $3.6T in losses spanning from 1900 to 2024
|
||||
')
|
||||
)
|
||||
)
|
||||
|
||||
actionButton("selectStorm", "Submit", class = "btn-primary")
|
||||
|
||||
|
||||
observeEvent(input$stormYear, {
|
||||
|
||||
Reference in New Issue
Block a user