We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1a73c commit 5c8668dCopy full SHA for 5c8668d
R/tm_g_distribution.R
@@ -246,14 +246,14 @@ ui_distribution <- function(id, ...) {
246
DT::dataTableOutput(ns("summary_table")),
247
tags$h3("Tests"),
248
conditionalPanel(
249
- "input['teal-teal_modules-distribution_module-module-dist_tests'].length === 0",
+ sprintf("input['%s'].length === 0", ns("dist_tests")),
250
div(
251
id = ns("please_select_a_test"),
252
"Please select a test"
253
)
254
),
255
256
- "input['teal-teal_modules-distribution_module-module-dist_tests'].length > 0",
+ sprintf("input['%s'].length > 0", ns("dist_tests")),
257
DT::dataTableOutput(ns("t_stats"))
258
259
0 commit comments