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

Fix validate1 definition

R/shiny-ui-base.R(validate1): Fix.
parent d6f53552
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ obsrv_e <- shiny::observeEvent
vols <- shinyFiles::getVolumes
vol_f <- vols()
volumes <- function() c(wd=getwd(), shinyFiles::getVolumes()())
validate1 <- function(expr,msg) shiny::validate(need(expr,msg))
validate1 <- function(expr,msg) shiny::validate(shiny::need(expr,msg))
path2vol <- function(path) {
......
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