Skip to content

Commit

Permalink
Small fix to add quote as data input option in shinyapp
Browse files Browse the repository at this point in the history
  • Loading branch information
gavieira committed Nov 13, 2023
1 parent 262723b commit 13f342f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/biblioverApp/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ server <- function(input, output, session) {
sep <- input[[paste0("sep", i)]]
quote <- input[[paste0("quote", i)]]

df <- read_input_file(filepath, sep) # Read the CSV file and store it in a data frame
df <- read_input_file(filepath, sep, quote) # Read the CSV file and store it in a data frame
all_sets[[set_name]] <- df # Assign the data frame to the named list
}
return(all_sets)
Expand Down

0 comments on commit 13f342f

Please sign in to comment.