Is there a way to always make the ui of dateRangeInput fully visible?
Minimising the window and clicking on the date, this happens:

library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(
sidebarMenu(
menuItem("Home", tabName = "Home")
)
),
dashboardBody(
tabItems(
tabItem(tabName = "Home",
fluidRow(
br(),
br(),
br(),
br(),
br(),
br(),
box(
dateRangeInput("daterange", "Date range:", start = "2001-01-01", end = "2010-12-31"),
title="Select Dates", solidHeader=T, status="primary",width=6,height=250)
)
)
)
)
)
server <- function(input, output) {
}
shinyApp(ui = ui, server = server)