Skip to content

Commit a9a0b0e

Browse files
committed
chore: improve on error message
1 parent e0b9e0e commit a9a0b0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

R/module_teal_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ srv_validate_reactive_teal_data <- function(id, # nolint: object_length
133133
output$previous_failed <- renderUI({
134134
if (hide_validation_error()) {
135135
shinyjs::hide("validate_messages")
136-
tags$div("One of previous transformators failed. Please fix and continue.", class = "teal-output-warning")
136+
tags$div("One of previous transformators failed. Please check its inputs.", class = "teal-output-warning")
137137
} else {
138138
shinyjs::show("validate_messages")
139139
NULL

R/module_transform_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ srv_teal_transform_data <- function(id, data, transformators, modules = NULL, is
120120
output$error_wrapper <- renderUI({
121121
if (is_previous_failed()) {
122122
shinyjs::disable(transform_wrapper_id)
123-
tags$div("One of previous transformators failed. Please fix and continue.", class = "teal-output-warning")
123+
tags$div("One of previous transformators failed. Please check its inputs.", class = "teal-output-warning")
124124
} else {
125125
shinyjs::enable(transform_wrapper_id)
126126
shiny::tagList(

0 commit comments

Comments
 (0)