You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first time you click on the year the list is shown. If you click a second time or on a second dialog i.e. a from and until date selection, the list visually disappears. You can still click and a year is selected but it's a shot in the dark. The polyfills "CustomEvent" and "scrollIntoViewIfNeeded" are included. No console error is thrown.
The text was updated successfully, but these errors were encountered:
had the same issue, I fixed this by adding years.classList.remove('zoomOut'); at mdDateTimePicker.js:864
``
...
if (mdDateTimePicker.dialog.view) {
viewHolder.classList.add('zoomOut');
years.classList.remove('mddtp-picker__years--invisible');
years.classList.remove('zoomOut');
years.classList.add('zoomIn');
// scroll into the view
currentYear.scrollIntoViewIfNeeded && currentYear.scrollIntoViewIfNeeded();
} else {
...
The first time you click on the year the list is shown. If you click a second time or on a second dialog i.e. a from and until date selection, the list visually disappears. You can still click and a year is selected but it's a shot in the dark. The polyfills "CustomEvent" and "scrollIntoViewIfNeeded" are included. No console error is thrown.
The text was updated successfully, but these errors were encountered: