modify leaflet popup to fix missing error

This commit is contained in:
2025-12-26 18:37:24 -05:00
parent c8dad8b526
commit 4ca728714a
+2 -2
View File
@@ -856,7 +856,7 @@ output$growth_map <- renderLeaflet({
color = "red",
fillOpacity = ~population_opacity,
weight = 2,
popup = ~ name
popup = ~paste(name)
)
} else {
map <- map %>%
@@ -866,7 +866,7 @@ output$growth_map <- renderLeaflet({
color = "blue",
fillOpacity = ~housing_opacity,
weight = 2,
popup = ~ name
popup = ~paste(name)
)
}