ref functions

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-05-16 15:36:08 +02:00
parent a167cb8ace
commit 7144854e39
No known key found for this signature in database

View file

@ -187,7 +187,7 @@ create_column_server <- function(id,
if (input$new_column == "") { if (input$new_column == "") {
rv$feedback <- shinyWidgets::alert( rv$feedback <- shinyWidgets::alert(
status = "warning", status = "warning",
ph("warning"), datamods::i18n("New column name cannot be empty") phosphoricons::ph("warning"), datamods::i18n("New column name cannot be empty")
) )
} }
}) })
@ -351,7 +351,7 @@ try_compute_column <- function(expression,
) )
shinyWidgets::alert( shinyWidgets::alert(
status = "success", status = "success",
ph("check"), datamods::i18n("Column added!") phosphoricons::ph("check"), datamods::i18n("Column added!")
) )
} }
@ -374,7 +374,7 @@ extract_calls <- function(exp) {
alert_error <- function(text) { alert_error <- function(text) {
alert( alert(
status = "danger", status = "danger",
ph("bug"), text phosphoricons::ph("bug"), text
) )
} }