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

Merge pull request #4193 from olsh/more-granular-access-schedule

Add ability to specify half hour for access schedule
This commit is contained in:
Bill Thornton 2023-01-05 00:38:20 -05:00 committed by GitHub
commit d77e4c8b2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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