rstudio / shinydashboard

Shiny Dashboarding framework
https://rstudio.github.io/shinydashboard/
Other
887 stars 299 forks source link

Missing sidebar toggle icon using latest shiny version #297

Closed ismirsehregal closed 5 years ago

ismirsehregal commented 5 years ago

Using the latest shiny_1.1.0.9001 (and shinydashboard_0.7.0) the sidebar toggle icon (burger icon) isn't displayed correctly:

Firefox: image

Chrome: image

Might be related to this?

# if (!require("devtools"))
#   install.packages("devtools")
# devtools::install_github("rstudio/shiny")

## app.R ##
library(shiny)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody()
)

server <- function(input, output) { }

shinyApp(ui, server)
wch commented 5 years ago

Thanks for the report -- we're taking a look into the problem.