From fb0141783c0f32bf5e0e80f572d3aaf04e107505 Mon Sep 17 00:00:00 2001 From: Marcin <133694481+m7pr@users.noreply.github.com> Date: Mon, 28 Oct 2024 13:04:55 +0100 Subject: [PATCH] Unify `#@linksto` usage (#1397) This does not change any behavior of anything. This is just consistency management with `#@linksto` tag that we have for `lockEnvironment(.raw_data)` https://github.com/search?q=repo%3Ainsightsengineering%2Fteal+%23+%40linksto&type=code image --------- Signed-off-by: Marcin <133694481+m7pr@users.noreply.github.com> --- R/module_filter_data.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/module_filter_data.R b/R/module_filter_data.R index efe4a53bd0..14dc7b4ecf 100644 --- a/R/module_filter_data.R +++ b/R/module_filter_data.R @@ -58,7 +58,7 @@ srv_filter_data <- function(id, datasets, active_datanames, data_rv, is_active) ".raw_data <- list2env(list(", toString(sprintf("%1$s = %1$s", sapply(datanames, as.name))), "))\n", - "lockEnvironment(.raw_data) #@linksto .raw_data" # this is environment and it is shared by qenvs. CAN'T MODIFY! + "lockEnvironment(.raw_data) # @linksto .raw_data" # this is environment and it is shared by qenvs. CAN'T MODIFY! ) ) filtered_code <- .get_filter_expr(datasets = datasets, datanames = datanames)