Skip to content
Snippets Groups Projects
Unverified Commit a0b38490 authored by Todor Kondic's avatar Todor Kondic
Browse files

Return cwd from volumes also

* R/shiny-ui-base.R(volumes): Attach the current working directory.
parent b23e77b4
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ obsrv <- shiny::observe ...@@ -21,7 +21,7 @@ obsrv <- shiny::observe
obsrv_e <- shiny::observeEvent obsrv_e <- shiny::observeEvent
vols <- shinyFiles::getVolumes vols <- shinyFiles::getVolumes
vol_f <- vols() vol_f <- vols()
volumes <- shinyFiles::getVolumes() volumes <- function() c(wd=getwd(), shinyFiles::getVolumes()())
validate1 <- function(expr,msg) shiny::validate(need(expr,msg)) validate1 <- function(expr,msg) shiny::validate(need(expr,msg))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment