Skip to content

Commit be49c50

Browse files
committed
chore: minor rename of id
1 parent a71e6d5 commit be49c50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/module_transform_data.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ui_teal_transform_data <- function(id, transformators, class = "well") {
2323
transformators <- list(transformators)
2424
}
2525
checkmate::assert_list(transformators, "teal_transform_module")
26-
names(transformators) <- sprintf("transformator_%d", seq_len(length(transformators)))
26+
names(transformators) <- sprintf("transform_%d", seq_len(length(transformators)))
2727

2828
lapply(
2929
names(transformators),
@@ -80,7 +80,7 @@ srv_teal_transform_data <- function(id, data, transformators, modules = NULL, is
8080
transformators <- list(transformators)
8181
}
8282
checkmate::assert_list(transformators, "teal_transform_module", null.ok = TRUE)
83-
names(transformators) <- sprintf("transformator_%d", seq_len(length(transformators)))
83+
names(transformators) <- sprintf("transform_%d", seq_len(length(transformators)))
8484

8585
moduleServer(id, function(input, output, session) {
8686
module_output <- Reduce(

0 commit comments

Comments
 (0)