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:
commit
d77e4c8b2c
1 changed files with 1 additions and 1 deletions
|
@ -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>`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue