Skip to content

Commit

Permalink
Removed name bits that were not working #85
Browse files Browse the repository at this point in the history
  • Loading branch information
fontikar committed Sep 13, 2024
1 parent 5649805 commit cbd2c77
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions R/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -392,10 +392,8 @@ infinity_server <- function(...) {
output$downloadData <- downloadHandler(
filename = function() {
name_bits <- gsub(".parquet", "", input$ala_path)
name_bits <- gsub("Australia-", "", name_bits)
paste(input$place,
"-",
input$buffer_size,
name_bits <- gsub("infinitylists-", "", name_bits)
paste(input$buffer_size,
"m-buffer-",
name_bits,
".csv",
Expand Down

0 comments on commit cbd2c77

Please sign in to comment.