Skip to content

Commit

Permalink
revert reactive name change
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo committed Oct 24, 2024
1 parent f84ca35 commit 37e802c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/module_data_summary.R
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ srv_data_summary <- function(id, teal_data) {
function(input, output, session) {
logger::log_debug("srv_data_summary initializing")

filter_overview_table <- reactive({
summary_table <- reactive({
req(inherits(teal_data(), "teal_data"))
if (!length(ls(teal.code::get_env(teal_data())))) {
return(NULL)
Expand All @@ -85,7 +85,7 @@ srv_data_summary <- function(id, teal_data) {
})

output$table <- renderUI({
summary_table_out <- filter_overview_table()
summary_table_out <- summary_table()
if (inherits(summary_table_out, "try-error")) {
# Ignore silent shiny error
if (!inherits(attr(summary_table_out, "condition"), "shiny.silent.error")) {
Expand Down

0 comments on commit 37e802c

Please sign in to comment.