Skip to content

Commit

Permalink
fix: show only uploaded file name
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Sobolewski committed Jun 30, 2023
1 parent 398f9e5 commit 68531d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inst/examples/Button3.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ server <- function(input, output) {
click("uploadFile")
})

output$file_path <- renderPrint({
input$uploadFile
output$file_path <- renderText({
input$uploadFile$name
})
}

Expand Down

0 comments on commit 68531d9

Please sign in to comment.