Patch the empty month and year selection of blocked periods (#1494)

This commit is contained in:
Alex Tselegidis 2024-04-15 14:09:55 +02:00
parent 5b2ce2e000
commit 8bdb762e9a
1 changed files with 3 additions and 0 deletions

View File

@ -80,6 +80,9 @@ App.Pages.BlockedPeriods = (function () {
$blockedPeriods.find('.record-details .form-label span').prop('hidden', false);
$filterBlockedPeriods.find('button').prop('disabled', true);
$filterBlockedPeriods.find('.results').css('color', '#AAA');
App.Utils.UI.setDateTimePickerValue($startDateTime, moment('00:00', 'HH:mm').toDate());
App.Utils.UI.setDateTimePickerValue($endDateTime, moment('00:00', 'HH:mm').add(1, 'day').toDate());
});
/**