shiny.ui.accordion_panel
stopped working with HTML type input parameter due to changes in htmltools dependency
#1827
Labels
shiny.ui.accordion_panel
checks if thetitle
parameter is an instance ofstr
. It used to work withexpress.ui.HTML
type input parameters, likeui.markdown
.express.ui.HTML
inherits fromhtmltools
dependency. htmltools has undergone a change from version 0.6.0 wherein the HTML type no longer inherits fromstr
. This breaks theisinstance(title, str)
check that happens in theshiny.ui.accordion_panel
.With htmltools v0.5.3:
With htmltools v0.6.0:
The text was updated successfully, but these errors were encountered: