Skip to content

Commit

Permalink
feat: new error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ESCRI11 committed Sep 25, 2024
1 parent 2ddcdde commit b371868
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion components/board.loading/R/loading_table_datasets.R
Original file line number Diff line number Diff line change
Expand Up @@ -634,9 +634,17 @@ loading_table_datasets_server <- function(id,
inputId = "confirmdelete"
)
} else {
msg <- paste(
"Deleteing is disabled for your account.",
"Please <a href='https://events.bigomics.ch/upgrade' target='_blank'>",
"<b><u>upgrade</u></b></a> to enable it."
)
shinyalert::shinyalert(
title = "Oops!",
text = "Delete is disabled for your account"
text = HTML(msg),
showCancelButton = TRUE,
showConfirmButton = FALSE,
html = TRUE
)
}
},
Expand Down

0 comments on commit b371868

Please sign in to comment.