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
My use case was to have a ValueBox without a subtitle or footer.
The issue is that even when you specify subtitle = NULL, you still will get <p class="small-box-subtitle"></p> as shiny::tags$p(class = "small-box-subtitle", subtitle) will still result in a tag, which is executed at: https://github.com/RinteRface/bs4Dash/blob/master/R/cards.R#L778
My use case was to have a ValueBox without a subtitle or footer.
The issue is that even when you specify
subtitle = NULL
, you still will get<p class="small-box-subtitle"></p>
asshiny::tags$p(class = "small-box-subtitle", subtitle)
will still result in a tag, which is executed at:https://github.com/RinteRface/bs4Dash/blob/master/R/cards.R#L778
Also, with the default
footer = NULL
, there is space that is added to the valuebox that is not desirable:https://github.com/RinteRface/bs4Dash/blob/master/R/cards.R#L805
I have added a PR at #289 to fix.
The text was updated successfully, but these errors were encountered: