Skip to content

Commit

Permalink
v0.15.1 - fix dashbord slider assignment bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mpascariu committed Jan 29, 2024
1 parent 8bda3c1 commit 7b8ebb9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: lemur
Title: Life expectancy monitor upscaled in R
Version: 0.15.0
Version: 0.15.1
Authors@R: c(
person("Marius D.", "Pascariu", role = c("aut", "cre", "cph"), email = "rpascariu@outlook.com", comment = c(ORCID = "0000-0002-2568-6489")),
person("Jose Manuel", "Aburto", role = "aut", comment = c(ORCID = "0000-0002-2926-6879")),
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version 0.15.0
version 0.15.1
- experiment with a second SDG mode that allows changes in individual causes of
death;

Expand Down
12 changes: 6 additions & 6 deletions R/app_ui_dashboard.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -------------------------------------------------------------- #
# Author: Marius D. PASCARIU
# Last Update: Tue Jan 16 21:07:03 2024
# Last Update: Mon Jan 29 11:16:13 2024
# -------------------------------------------------------------- #

#' UI - dashboard page
Expand Down Expand Up @@ -259,14 +259,14 @@ side_panel <- function() {
conditionalPanel(
condition = "input.mode == 'mode_sdg'",

#
slider_input_(inputId = "sdg_3", label = "AIDS epidemic, tuberculosis, malaria and neglected tropical diseases:"),
# End Epidemics. Goal: -100% relative to 2015 level
slider_input_(inputId = "sdg_3", label = "Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease:"),
slider_input_(inputId = "sdg_4", label = "Mortality rate attributed to cardiovascular disease, cancer, diabetes or chronic respiratory disease:"),
#Goal: - 33.3% relative to 2015 level
slider_input_(inputId = "sdg_4", label = "Under-five mortality rate:"),
#
slider_input_(inputId = "sdg_1", label = "Maternal mortality ratio:"),
slider_input_(inputId = "sdg_1", label = "Under-five mortality rate:"),
#
slider_input_(inputId = "sdg_2a", label = "Mortality due to natural disasters:"),
slider_input_(inputId = "sdg_2a", label = "Maternal mortality ratio:"),
# goal 25
slider_input_(inputId = "sdg_2b", label = "Neonatal mortality rate:"),
# Goal: -50% relative to 2015 level
Expand Down
Binary file not shown.
6 changes: 3 additions & 3 deletions inst/app/www/doc_about.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ The sustainable development goals (SDG) were set in 2015 with many specific targ
---
#### Updates and news

**Monitor Version:** 0.15.0
**Monitor Version:** 0.15.1

**Last Update:** "2024-01-16 18:35:33 CET"
**Last Update:** "2024-01-29 11:17:17 CET"

**News in previous versions:**
- 2024-01-16 - v0.15.0 - experiment with a second SDG mode that allows changes in individual causes of death;
- 2024-01-16 - v0.15.1 - experiment with a second SDG mode that allows changes in individual causes of death;
- 2023-11-15 - v0.14.2 - UI bug fix;
- 2023-11-01 - v0.14.1 - Fix bug related under five and maternal mortality data;
- 2022-06-02 - v0.13.0 - Include the maternal and neonatal mortality in the SDG section;
Expand Down

0 comments on commit 7b8ebb9

Please sign in to comment.