Skip to content

Commit

Permalink
shinyalert call substituted against shinyWidgets.
Browse files Browse the repository at this point in the history
  • Loading branch information
janlisec committed Mar 21, 2024
1 parent e65963f commit badc6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/m_materialtabelle.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ m_materialtabelleServer <- function(id, rv) {
# use err_txt to provide error messages to the user
err_txt <- shiny::reactiveVal(NULL)
shiny::observeEvent(err_txt(), {
shinyalert::shinyalert(text = err_txt(), type = "info")
shinyWidgets::show_alert(title = NULL, text = err_txt(), type = "info")
err_txt(NULL)
}, ignoreNULL = TRUE)

Expand Down

0 comments on commit badc6b9

Please sign in to comment.