Warning when using controlbarMenu
ismirsehregal opened this issue · 1 comments
ismirsehregal commented
When using controlbarMenu
along with the latest CRAN version of shiny the following warning is shown:
bootstrapPage(position =)
is deprecated as of shiny 0.10.2.2.
The 'position' argument is no longer used with the latest version of Bootstrap.
This can be reproduced with the controlbarMenu
example from the docs:
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
shinyApp(
ui = dashboardPage(
header = dashboardHeader(),
sidebar = dashboardSidebar(),
body = dashboardBody(),
controlbar = dashboardControlbar(
skin = "dark",
controlbarMenu(
id = "menu",
controlbarItem(
"Tab 1",
"Welcome to tab 1"
),
controlbarItem(
"Tab 2",
"Welcome to tab 2"
)
)
),
title = "Right Sidebar"
),
server = function(input, output) { }
)
benhmin commented
i have seen the same issue, thanks