Skip to content

Commit

Permalink
fix: remove extra parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Nov 4, 2024
1 parent 114fa37 commit aa0d119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/dummy_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ example_module <- function(label = "example teal module", datanames = "all", tra
server = function(id, data) {
checkmate::assert_class(isolate(data()), "teal_data")
moduleServer(id, function(input, output, session) {
datanames_rv <- reactive(names((req(data()))))
datanames_rv <- reactive(names(req(data())))
observeEvent(datanames_rv(), {
selected <- input$dataname
if (identical(selected, "")) {
Expand Down

0 comments on commit aa0d119

Please sign in to comment.