Open Mkranj opened 1 year ago
If the snippet throws an error, I've wrapped the dashboardPage in a tabPanel:
ui <- navbarPage(
title = "Actual title",
tabPanel(
dashboardPage(
title = NULL,
dashboardHeader(title = NULL),
dashboardSidebar(),
dashboardBody()
)
)
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
Description
I'm using several dashboardPages inside of a navbarPage tabset for a project. Each call to dashboardPage automatically creates a new
Proposed outcome
If
title = NULL
in both dashboardPage and dashboardHeader, no additionalExample of issue
Run the following code snippet, and check the resulting page's source HTML:
OnlyActual title is supposed to be present, but there's also an additional
For precedents, consider what happens when setting , leaving only the one generated by dashboardPage!
title = NULL
in the navbarPage. This generates no empty