Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ Suggests:
shinytest,
knitr
Imports:
dplyr,
htmlwidgets,
purrr,
stringr,
jsonlite,
shiny,
magrittr,
DT,
shinyjs,
rmarkdown,
rlang
dplyr,
htmlwidgets,
purrr,
stringr,
jsonlite,
shiny,
magrittr,
DT,
shinyjs,
rmarkdown,
rlang,
utils
VignetteBuilder: knitr

1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ importFrom(shiny,runApp)
importFrom(stringr,str_detect)
importFrom(stringr,str_split)
importFrom(stringr,str_subset)
importFrom(utils,globalVariables)
2 changes: 1 addition & 1 deletion R/getSettingsMetadata.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ getSettingsMetadata<-function(charts=NULL, text_keys=NULL, cols=NULL, filter_exp
return(NULL)
}else{
# see if any of the matched chart flags are TRUE
md<-md%>%filter_at(vars(matched_chart_columns),any_vars(.data$.==TRUE))
md<-md%>%filter_at(vars(matched_chart_columns),any_vars(.))
}
}

Expand Down
2 changes: 2 additions & 0 deletions R/zzz.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#' @importFrom utils globalVariables
globalVariables(c("."))