We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b70dd commit 151e838Copy full SHA for 151e838
R/dash.R
@@ -474,9 +474,24 @@ Dash <- R6::R6Class(
474
showcase = FALSE,
475
pruned_errors = TRUE,
476
debug = FALSE,
477
+ dev_tools_ui = NULL,
478
+ dev_tools_props_check = NULL,
479
...) {
480
self$server$host <- host
481
self$server$port <- as.numeric(port)
482
+
483
+ if (debug & !(isFALSE(dev_tools_ui)) | isTRUE(dev_tools_ui)) {
484
+ self$config$ui <- TRUE
485
+ } else {
486
+ self$config$ui <- FALSE
487
+ }
488
489
+ if (debug & !(isFALSE(dev_tools_props_check)) | isTRUE(dev_tools_props_check)) {
490
+ self$config$props_check <- TRUE
491
492
+ self$config$props_check <- FALSE
493
494
495
private$pruned_errors <- pruned_errors
496
private$debug <- debug
497
0 commit comments