Skip to content

Commit

Permalink
fixed bug with orphan concepts not loading in CD
Browse files Browse the repository at this point in the history
  • Loading branch information
azimov committed Sep 27, 2024
1 parent e8d4ea5 commit 1514fc6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: OhdsiShinyModules
Type: Package
Title: Repository of Shiny Modules for OHDSI Result Viewers
Version: 3.0.1
Version: 3.0.2
Authors@R: c(
person("Jenna", "Reps", email = "[email protected]", role = c("aut", "cre")),
person("Nathan", "Hall", role = c("aut")),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
OhdsiShinyModules v3.0.2
========================
- Fixed bug with orphan concepts not loading

OhdsiShinyModules v3.0.1
========================
- Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion R/cohort-diagnostics-main.R
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ cohortDiagnosticsServer <- function(id,
if ("includedSourceConcept" %in% dataSource$enabledReports)
selection["Concepts In Data Source"] <- "conceptsInDataSource"

if ("orphanConcepts" %in% dataSource$enabledReports)
if ("orphanConcept" %in% dataSource$enabledReports)
selection["Orphan Concepts"] <- "orphanConcepts"

if ("indexEventBreakdown" %in% dataSource$enabledReports)
Expand Down

0 comments on commit 1514fc6

Please sign in to comment.