diff --git a/DESCRIPTION b/DESCRIPTION index bfa5047..55383ca 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: ghqc.app Title: Create QC Checklists in Github Issues -Version: 0.1.2 +Version: 0.1.3 Authors@R: c( person("Jenna", "Johnson", email = "jenna@a2-ai.com", role = c("aut", "cre")), person("Anne", "Zheng", email = "anne@a2-ai.com", role = c("aut")), diff --git a/NEWS.md b/NEWS.md index 33a8f11..02c9243 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,10 @@ # ghqc.app (beta version) +# ghqc.app 0.1.3 + +- Changes "No Existing Milestones"" to "No Open Milestones" in ghqc_assign_app() Existing Milestones dropdown menu + # ghqc.app 0.1.2 - Fixes bug in record app warning modal pop-up for unclosed milestones/issues/checklist items: Milestone link wasn't clickable diff --git a/R/app_01_assign_server.R b/R/app_01_assign_server.R index b84bca2..78b5aae 100644 --- a/R/app_01_assign_server.R +++ b/R/app_01_assign_server.R @@ -44,7 +44,7 @@ ghqc_assign_server <- function(id, remote, root_dir, checklists, org, repo, memb updateSelectizeInput( session, "milestone_existing", - options = list(placeholder = "No Existing Milestones") + options = list(placeholder = "No Open Milestones") ) }