Skip to content

Commit

Permalink
chore: rename ui/srv_teal_transform_data to ui/srv_transform_teal_data
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Nov 22, 2024
1 parent 5247177 commit e09b72a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
4 changes: 2 additions & 2 deletions R/tm_g_scatterplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ ui_g_scatterplot <- function(id, ...) {
is_single_dataset = is_single_dataset_value
)
},
ui_teal_transform_data(ns("decorator"), transformators = args$decorators),
ui_transform_teal_data(ns("decorator"), transformators = args$decorators),
teal.widgets::panel_group(
teal.widgets::panel_item(
title = "Plot settings",
Expand Down Expand Up @@ -1005,7 +1005,7 @@ srv_g_scatterplot <- function(id,
teal.code::eval_code(plot_q, plot_call)
})

decorated_output_q <- srv_teal_transform_data(id = "decorator", data = output_q, transformators = decorators)
decorated_output_q <- srv_transform_teal_data(id = "decorator", data = output_q, transformators = decorators)
decorated_output_plot_q <- reactive(within(decorated_output_q(), print(plot)))
plot_r <- reactive({
req(output_q()) # Ensure original errors are displayed
Expand Down
18 changes: 17 additions & 1 deletion man/tm_g_scatterplot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e09b72a

Please sign in to comment.