Skip to content

Commit

Permalink
Merge pull request #12 from acornamr/dev
Browse files Browse the repository at this point in the history
v2.5.3
  • Loading branch information
ocelhay authored Aug 2, 2022
2 parents 31a4665 + 69de0e2 commit a1b5b82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: acorn
Type: Package
Title: A Dashboard for ACORN AMR Data
Version: 2.5.0
Version: 2.5.3
Authors@R: c(person(given = "Olivier", family = "Celhay",
email = "[email protected]",
role = c("aut", "cre"), comment = c(ORCID = "https://orcid.org/0000-0002-2971-9110")),
Expand Down
2 changes: 1 addition & 1 deletion inst/acorn/app.R
Original file line number Diff line number Diff line change
Expand Up @@ -1441,7 +1441,7 @@ server <- function(input, output, session) {
if (continue) {
if (!fail_read_redcap) {

if(nrow(dl_redcap_f01f05_dta) == 0 | ncol(dl_redcap_f01f05_dta) != 237) {
if(nrow(dl_redcap_f01f05_dta) == 0 | ncol(dl_redcap_f01f05_dta) < 237) {
shinyjs::html(id = "text_redcap_f01f05_log", i18n$t("Issue detected with REDCap data. Please report to ACORN data managers. Until resolution, only existing .acorn files can be used."), add = TRUE)
checklist_status$redcap_F01F05_status <- list(status = "ko", msg = i18n$t("The REDCap dataset is empty/in wrong format. Please contact ACORN support."))
continue <<- FALSE
Expand Down
2 changes: 1 addition & 1 deletion inst/acorn/www/R/startup.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
app_version <- "2.5.1" # Make sure that the app version is identical in DESCRIPTION
app_version <- "2.5.3" # Make sure that the app version is identical in DESCRIPTION
session_start_time <- format(Sys.time(), "%Y-%m-%d_%HH%M")

# IMPORTANT: ensure that there is a match between the calls below and:
Expand Down

0 comments on commit a1b5b82

Please sign in to comment.