Skip to content

Commit c75c701

Browse files
committed
the key problem with the form submission was that the name was missing
1 parent 67ab5fb commit c75c701

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/bootstrap.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ numericInput <- function(inputId, label, value, min = NA, max = NA, step = NA) {
512512
#'
513513
#' @export
514514
fileInput <- function(inputId, label, multiple = FALSE, accept = NULL) {
515-
inputTag <- tags$input(id = inputId, type = "file")
515+
inputTag <- tags$input(id = inputId, name = inputId, type = "file")
516516
if (multiple)
517517
inputTag$attribs$multiple <- "multiple"
518518
if (length(accept) > 0)

0 commit comments

Comments
 (0)