diff --git a/app/dashboard.Rmd b/app/dashboard.Rmd index 6181779..7be1b4e 100644 --- a/app/dashboard.Rmd +++ b/app/dashboard.Rmd @@ -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) ) }