From b4946fc8bbcea912dfa703ba10c46e7a8d74d71d Mon Sep 17 00:00:00 2001 From: Matt Dray <18232097+matt-dray@users.noreply.github.com> Date: Fri, 29 May 2026 15:12:03 +0100 Subject: [PATCH 1/2] Remove linebreak from NEE availability text --- R/mod_mitigators_server.R | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/R/mod_mitigators_server.R b/R/mod_mitigators_server.R index a8f73a96..44fca2e3 100644 --- a/R/mod_mitigators_server.R +++ b/R/mod_mitigators_server.R @@ -543,8 +543,10 @@ mod_mitigators_server <- function( shiny::validate( shiny::need( nrow(nee_params) > 0, - "This TPMA was not part of the National Elicitation Exercise, - so a nationally-determined estimate is not available." + paste( + "This TPMA was not part of the National Elicitation Exercise,", + "so a nationally-determined estimate is not available." + ) ) ) From 97100e6fb264eeb2bb959871565a470bcd57fa18 Mon Sep 17 00:00:00 2001 From: Matt Dray <18232097+matt-dray@users.noreply.github.com> Date: Fri, 29 May 2026 15:39:26 +0100 Subject: [PATCH 2/2] Note keyboard control of slider --- R/mod_mitigators_server.R | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/R/mod_mitigators_server.R b/R/mod_mitigators_server.R index 44fca2e3..caa38aec 100644 --- a/R/mod_mitigators_server.R +++ b/R/mod_mitigators_server.R @@ -612,9 +612,8 @@ mod_mitigators_server <- function( output$slider_interval_text <- shiny::renderUI({ text <- glue::glue( - "Adjusting this slider will change the width of the", - "corresponding yellow-highlighted region in the trend, funnel", - "and boxplot charts above.", + "Click a slider handle and use your arrow keys for finer control.", + "Your interval is shown as a yellow range on the trend, funnel and boxplot charts.", .sep = " " )