HTML Tags inside choiceNames in multiInput() are no longer resolved.
Reproducible example:
library(shiny)
ui <- fluidPage(
fluidRow(uiOutput("mmm"))
)
server <- function(input, output) {
output$mmm <- renderUI({
shinyWidgets::multiInput(
inputId = "colsToModel",
label = all_cols[[1]],
choices = NULL,
# Here it stops working
choiceNames = "<b>value1</b>",
choiceValues = "value1",
width = 'auto',
options = list(
non_selected_header = "Choose between:",
selected_header = "You have selected:"
))
})
}
shinyApp(ui = ui, server = server)
HTML Tags inside choiceNames in multiInput() are no longer resolved.
Reproducible example: