latest dev version
Some checks failed
pkgdown.yaml / pkgdown (push) Has been cancelled

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-06-20 10:06:53 +02:00
commit 0f0e3ddc13
No known key found for this signature in database
14 changed files with 43 additions and 13 deletions

View file

@ -1 +1 @@
app_version <- function()'25.6.1'
app_version <- function()'25.6.3'

View file

@ -50,7 +50,7 @@ write_quarto <- function(data, ...) {
)
}
write_rmd <- function(data, ...) {
write_rmd <- function(data, ..., params.args=NULL) {
# Exports data to temporary location
#
# I assume this is more secure than putting it in the www folder and deleting
@ -65,7 +65,7 @@ write_rmd <- function(data, ...) {
## Ref: https://github.com/quarto-dev/quarto-cli/discussions/4041
## Outputs to the same as the .qmd file
rmarkdown::render(
params = list(data.file = "web_data.rds",version=app_version()),
params = modifyList(list(data.file = "web_data.rds",version=app_version()),params.args),
# execute_params = list(data.file = temp),
...
)

View file

@ -1 +1 @@
hosted_version <- function()'v25.6.1-250604'
hosted_version <- function()'v25.6.3-250620'

View file

@ -89,6 +89,7 @@ modal_data_missings <- function(data,
tags$div(
shiny::renderPlot({
visdat::vis_dat(datar())+
ggplot2::guides(fill = ggplot2::guide_legend(title = "Data class")) +
# ggplot2::theme_void() +
ggplot2::theme(
# legend.position = "none",

Binary file not shown.