pull/146/head
Merve Özçifçi 2020-01-17 15:45:21 +03:00
commit 1fe8f38c73
1 changed files with 2 additions and 2 deletions

View File

@ -1809,9 +1809,9 @@ export default {
else {
cell = DomHandler.findSingle(this.$refs.overlay, 'span.p-highlight');
if (!cell) {
let todayCell = DomHandler.findSingle(this.$refs.overlay, 'td.p-datepicker-today');
let todayCell = DomHandler.findSingle(this.$refs.overlay, 'td.p-datepicker-today span:not(.p-disabled)');
if (todayCell)
cell = todayCell.children[0];
cell = todayCell;
else
cell = DomHandler.findSingle(this.$refs.overlay, '.p-datepicker-calendar td span:not(.p-disabled)');
}