Skip to content

Commit

Permalink
Merge branch '821_select_datanames@main' of https://github.com/insigh…
Browse files Browse the repository at this point in the history
…tsengineering/teal.modules.general into 821_select_datanames@main
  • Loading branch information
llrs-roche committed Jan 10, 2025
2 parents 0f8eae8 + 3b70824 commit 341e039
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions R/tm_data_table.R
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
#'
tm_data_table <- function(label = "Data Table",
variables_selected = list(),
datasets_selected = NULL,
datanames = NULL,
datasets_selected = "all",
datanames = datasets_selected,
dt_args = list(),
dt_options = list(
searching = FALSE,
Expand Down
4 changes: 2 additions & 2 deletions R/tm_missing_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
tm_missing_data <- function(label = "Missing data",
plot_height = c(600, 400, 5000),
plot_width = NULL,
datanames = NULL,
datanames = "all",
parent_dataname = "ADSL",
ggtheme = c("classic", "gray", "bw", "linedraw", "light", "dark", "minimal", "void"),
ggplot2_args = list(
Expand Down Expand Up @@ -163,7 +163,7 @@ tm_missing_data <- function(label = "Missing data",
ans <- module(
label,
server = srv_page_missing_data,
datanames = if (length(datanames) == 0) "all" else datanames,
datanames = datanames,
server_args = list(
parent_dataname = parent_dataname,
plot_height = plot_height,
Expand Down
4 changes: 2 additions & 2 deletions man/tm_data_table.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/tm_missing_data.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 341e039

Please sign in to comment.