We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test-case:
<template> <q-datetime v-model="model" type="date" no-clear modal format="DD/MM/YY" min="Mon Feb 19 2018 00:00:00 GMT+0200 (EET)" :max="now" /> </template> <script> export default { data () { return { model: null, now: new Date(2018, 3, 20) } } } </script>
Steps to reproduce:
Why? Underlying code uses date utils isSameDate() which uses UTC time instead of local time.
The text was updated successfully, but these errors were encountered:
fix: date utils: isSameDate() returns erroneous results in certain sc…
a491793
…enarios #1804
No branches or pull requests
Test-case:
Steps to reproduce:
Why?
Underlying code uses date utils isSameDate() which uses UTC time instead of local time.
The text was updated successfully, but these errors were encountered: