Skip to content

Commit

Permalink
chore: minor rename of id
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Nov 22, 2024
1 parent a71e6d5 commit be49c50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/module_transform_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ui_teal_transform_data <- function(id, transformators, class = "well") {
transformators <- list(transformators)
}
checkmate::assert_list(transformators, "teal_transform_module")
names(transformators) <- sprintf("transformator_%d", seq_len(length(transformators)))
names(transformators) <- sprintf("transform_%d", seq_len(length(transformators)))

lapply(
names(transformators),
Expand Down Expand Up @@ -80,7 +80,7 @@ srv_teal_transform_data <- function(id, data, transformators, modules = NULL, is
transformators <- list(transformators)
}
checkmate::assert_list(transformators, "teal_transform_module", null.ok = TRUE)
names(transformators) <- sprintf("transformator_%d", seq_len(length(transformators)))
names(transformators) <- sprintf("transform_%d", seq_len(length(transformators)))

moduleServer(id, function(input, output, session) {
module_output <- Reduce(
Expand Down

0 comments on commit be49c50

Please sign in to comment.