Skip to content

Commit

Permalink
fix 2 after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo committed Oct 23, 2023
1 parent fc83084 commit 2f11384
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions R/module_teal_with_splash.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ ui_teal_with_splash <- function(id,
srv_teal_with_splash <- function(id, data, modules, filter = teal_slices()) {
checkmate::assert_multi_class(data, c("TealDataAbstract", "teal_data"))
moduleServer(id, function(input, output, session) {
logger::log_trace(
"srv_teal_with_splash initializing module with data { paste(data$get_datanames(), collapse = ' ')}."
)
logger::log_trace("srv_teal_with_splash initializing module with data { toString(get_dataname(data))}.")

if (getOption("teal.show_js_log", default = FALSE)) {
shinyjs::showLog()
Expand Down Expand Up @@ -100,9 +98,7 @@ srv_teal_with_splash <- function(id, data, modules, filter = teal_slices()) {
}

res <- srv_teal(id = "teal", modules = modules, raw_data = raw_data, filter = filter)
logger::log_trace(
"srv_teal_with_splash initialized the module with data { paste(data$get_datanames(), collapse = ' ') }."
)
logger::log_trace("srv_teal_with_splash initialized module with data { toString(get_dataname(data))}.")
return(res)
})
}

0 comments on commit 2f11384

Please sign in to comment.