Closed GitHunter0 closed 2 months ago
FYI: Already mentioned here: https://github.com/dreamRs/shinyWidgets/issues/434
I upgraded bootstrap-select
1.14.0-beta2 which is still a pre-release, but should work with Bootstrap 5.
For me the update to 1.14.0-beta2 did not work, but I am not using a standard shiny page with a theme
argument. We have our own Bootstrap 5.1 template with additional js/css. After making sure the 1.14.0-beta2 dependency is loaded by setting:
library(bslib)
bs5 <- bs_theme(version = 5)
bs_global_set(theme = bs5)
shiny::shinyOptions(bootstrapTheme = bs5)
there is a JS error on running the shiny app (causing the entire app to freeze) :
Hi folks,
pickerInput()
choices are not appearing whenBootstrap 5
is selected. Here is a MWE:Thank you