summaryrefslogtreecommitdiff
path: root/R/server.R
diff options
context:
space:
mode:
authorNaeem Model <me@nmode.ca>2023-07-25 02:17:43 +0000
committerNaeem Model <me@nmode.ca>2023-07-25 02:17:43 +0000
commit02edefe2c0ccd07e2c510c073189d69af097892e (patch)
tree80f1369c2cbe06bf541c6b6adf95b144a9f8433a /R/server.R
parent1d15746821b536ef60d6b86e475bf0057d98e8bd (diff)
Fix string formatting and text output
Diffstat (limited to 'R/server.R')
-rw-r--r--R/server.R2
1 files changed, 1 insertions, 1 deletions
diff --git a/R/server.R b/R/server.R
index ed5ecd7..a2ba674 100644
--- a/R/server.R
+++ b/R/server.R
@@ -142,7 +142,7 @@ server <- function(input, output) {
output$gridShapeWarn <- shiny::renderText("")
if (is.na(max_scale) || max_scale < 1 / grid_length) {
- output$gridShapeWarn <- shiny::renderText("Error: The maximum scale
+ output$gridScaleWarn <- shiny::renderText("Error: The maximum scale
must be at least the reciprocal of the grid length.")
checks_passed <- FALSE
}