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 55848cb commit 741b615Copy full SHA for 741b615
R/data_extract_filter_module.R
@@ -67,7 +67,7 @@ data_extract_filter_srv <- function(id, datasets, filter) {
67
choices <- value_choices(
68
data = datasets[[filter$dataname]](),
69
var_choices = input$col,
70
- var_label = `if`(isTRUE(input$col == attr(filter$choices, "var_choices")), attr(filter$choices, "var_label"), NULL)
+ var_label = if (isTRUE(input$col == attr(filter$choices, "var_choices"))) attr(filter$choices, "var_label")
71
)
72
73
selected <- if (!is.null(filter$selected)) {
0 commit comments