Fix: hardcode subdivision choices to remove
All checks were successful
Deploy stAndrews / deploy (push) Successful in 40s

runtime data dep in UI
This commit is contained in:
2026-03-13 09:02:22 -04:00
parent eb18ba4115
commit dd7566ef8e
2 changed files with 5 additions and 4 deletions

View File

@@ -134,7 +134,11 @@ create_ui <- function() {
f7Select(
inputId = "sub_name",
label = "Select Subdivision:",
choices = c("All", sort(sbdvn$sub_name))
choices = c("All", "FAIRWAY GLEN", "GARDENS 1", "GARDENS 2",
"GARDENS 3", "GARDENS 4", "PATIOS 1", "PATIOS 2",
"PATIOS 3", "STRATFORD GLENN", "TERRACE HOMES",
"TERRACE VILLAS", "VILLAS 1 ST", "VILLAS 2",
"WEST LAKE GARDENS")
),
tags$br(),
f7Button(

3
app.R
View File

@@ -17,9 +17,6 @@ source("./R/config.R")
source("./R/app_ui.R")
source("./R/app_server.R")
# Load data needed at UI construction time
sbdvn <- sf::st_read(app_config$data_paths$plats)
# Create the app
ui <- create_ui()
server <- create_server