mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-09 22:25:59 -05:00
Use grep(value=TRUE)
This commit is contained in:
@@ -425,7 +425,9 @@ ReactiveValues <- R6Class(
|
||||
}
|
||||
|
||||
dep.keys <- .dependents$keys()
|
||||
dep.keys <- dep.keys[grepl(paste('^\\Q', key, ':', '\\E', '\\d+$', sep=''), dep.keys)]
|
||||
dep.keys <- grep(
|
||||
paste('^\\Q', key, ':', '\\E', '\\d+$', sep=''), dep.keys, value = TRUE
|
||||
)
|
||||
lapply(
|
||||
.dependents$mget(dep.keys),
|
||||
function(ctx) {
|
||||
|
||||
Reference in New Issue
Block a user