Skip to content

Commit

Permalink
fix #248.
Browse files Browse the repository at this point in the history
  • Loading branch information
DivadNojnarg committed Apr 21, 2022
1 parent 852f631 commit a069bc8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
time deprecated.

## Minor changes
- Allow `type = "hidden"` for `tabsetPanel`. Fixes #248.
- Fix regression introduced in 2.0.3: `renderMenu()` not working. See #234
- Update Github actions.
- Add bs4Dash class for card [binding](https://github.com/RinteRface/bs4Dash/commit/685d180a4e51f973f59ae35d47a8325018abf79d). Thanks @galachad.
Expand Down
2 changes: 1 addition & 1 deletion R/tabs.R
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
#'
#' @export
tabsetPanel <- function(..., id = NULL, selected = NULL,
type = c("tabs", "pills"),
type = c("tabs", "pills", "hidden"),
vertical = FALSE, side = "left", .list = NULL) {

items <- c(list(...), .list)
Expand Down
2 changes: 1 addition & 1 deletion man/dashboardControlbar.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/tabsetPanel.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a069bc8

Please sign in to comment.