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 8a775a9 commit 25290ffCopy full SHA for 25290ff
R/tm_g_distribution.R
@@ -245,7 +245,17 @@ ui_distribution <- function(id, ...) {
245
tags$h3("Statistics Table"),
246
DT::dataTableOutput(ns("summary_table")),
247
tags$h3("Tests"),
248
- DT::dataTableOutput(ns("t_stats"))
+ conditionalPanel(
249
+ "input['teal-teal_modules-distribution_module-module-dist_tests'].length === 0",
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",
257
+ DT::dataTableOutput(ns("t_stats"))
258
259
),
260
encoding = tags$div(
261
### Reporter
0 commit comments