Skip to content

Commit 2343549

Browse files
committed
Tweak wording in sidebars
1 parent 382ca1b commit 2343549

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

R/app_ui.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ app_ui <- function(request) {
5252
href = Sys.getenv("FEEDBACK_FORM_URL"),
5353
target = "_blank",
5454
class = "nav-link",
55-
shiny::icon("comment-dots"),
55+
bsicons::bs_icon("chat-dots"),
5656
"Give feedback"
5757
)
5858
),
@@ -63,8 +63,8 @@ app_ui <- function(request) {
6363
open = FALSE,
6464
multiple = TRUE,
6565
bslib::accordion_panel(
66-
title = "Statistical units",
67-
icon = bsicons::bs_icon("pin-map"),
66+
title = "Datasets",
67+
icon = bsicons::bs_icon("table"),
6868
mod_select_geography_ui("mod_select_geography"),
6969
mod_select_provider_ui("mod_select_provider"),
7070
),

R/mod_select_geography.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ mod_select_geography_ui <- function(id) {
55
ns <- shiny::NS(id)
66
shiny::selectInput(
77
ns("geography_select"),
8-
"Choose a geographic unit:",
8+
"Filter by geography:",
99
choices = NULL
1010
)
1111
}

R/mod_select_strategy.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ mod_select_strategy_ui <- function(id) {
66
shiny::tagList(
77
shiny::selectInput(
88
ns("strategy_category_select"),
9-
"Choose an activity type:",
9+
"Filter by activity type:",
1010
choices = c(
1111
"Inpatients" = "ip",
1212
"Outpatients" = "op",

0 commit comments

Comments
 (0)