You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reporting following bug, with reproducible example:
library("shiny")
ui<- fluidPage(
shiny::HTML("<br><br>"),
shinyWidgets::virtualSelectInput(
"test_id",
"Label",
list("A group"= c("An element of this group"))
)
)
server<-function(input, output, session) {
}
shinyApp(ui, server)
Result:
The element name itself is thus hidden; only the group name is shown. Using two elements, the behavior is ok, and both group name and elements are shown:
Any ideas how to circumvent this?
Thanks!
Lennart
The text was updated successfully, but these errors were encountered:
le-raman
changed the title
Material Switch hides element name when only one element for one group is present
virtualSelectInput hides element name when only one element for one group is present
Mar 25, 2024
Hi devs,
Reporting following bug, with reproducible example:
Result:
The element name itself is thus hidden; only the group name is shown. Using two elements, the behavior is ok, and both group name and elements are shown:
Any ideas how to circumvent this?
Thanks!
Lennart
The text was updated successfully, but these errors were encountered: