Add ability to specify half hour for access schedule

This commit is contained in:
Oleg Shevchenko
2022-12-03 19:07:19 +03:00
committed by Bill Thornton
parent 1af57c9f9f
commit 440dbc3176
@@ -28,7 +28,7 @@ import template from './accessSchedule.template.html';
function populateHours(context) {
let html = '';
for (let i = 0; i < 24; i++) {
for (let i = 0; i < 24; i += 0.5) {
html += `<option value="${i}">${getDisplayTime(i)}</option>`;
}