Skip to content

October 31st selected but output is October 1st #22

@motyocska

Description

@motyocska

Hello,

great package for date time picker, thank you!

I observed some funky behavior on the app where if you select October 31st then the output jumps to October 1st. This appears to happen with every month that ends with the date of 31st, ie November works ok. Am using the example from package:

if(interactive()){

library(shinyDatetimePickers)
library(shiny)

ui <- fluidPage(
br(),
sidebarLayout(
sidebarPanel(
datetimeMaterialPickerInput(
"dtmpicker",
label = "Appointment",
disablePast = TRUE
)
),
mainPanel(
verbatimTextOutput("dtmpicker")
)
)
)

server <- function(input, output){
output[["dtmpicker"]] <- renderPrint({
input[["dtmpicker"]]
})
}

shinyApp(ui, server)

}

this is probably unintended but wonder is it possible to correct?

thanks,

Andras

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions