Skip to content

Commit

Permalink
read data model csv as reactive object
Browse files Browse the repository at this point in the history
  • Loading branch information
avanlinden committed Aug 22, 2024
1 parent d426c31 commit a33bac0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
^renv$
^renv\.lock$
^\.github$
2 changes: 1 addition & 1 deletion global.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ truncated_values <- JS("
#' @export
format_dict_table <- function(data_model_url) {

data_model <- read.csv(url(data_model_url))
data_model <- reactive(read.csv(url(data_model_url)))

col_attribs <- data_model |>
dplyr::filter(Parent == 'ManifestColumn') |>
Expand Down

0 comments on commit a33bac0

Please sign in to comment.