Skip to content

Commit 0f02e23

Browse files
committed
Fix indentation
1 parent bd8fee0 commit 0f02e23

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

R/tm_variable_browser.R

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -888,12 +888,13 @@ get_plotted_data <- function(input, plot_var, data) {
888888
teal.reporter::teal_card("## Module's output(s)")
889889
)
890890
teal.code::eval_code(obj, "library(ggplot2)") |>
891-
within({
892-
ANL <- select(dataset_name, varname)
893-
},
894-
dataset_name = as.name(dataset_name),
895-
varname = as.name(varname)
896-
)
891+
within(
892+
{
893+
ANL <- select(dataset_name, varname)
894+
},
895+
dataset_name = as.name(dataset_name),
896+
varname = as.name(varname)
897+
)
897898
}
898899

899900
#' Renders the left-hand side `tabset` panel of the module

0 commit comments

Comments
 (0)