1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

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

View file

@ -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>`;
}