mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
live tv updates
This commit is contained in:
parent
60bcd69fd3
commit
f030db9841
8 changed files with 62 additions and 45 deletions
|
@ -78,7 +78,19 @@
|
|||
|
||||
html += '<td class="tabletColumn">' + minutes.toFixed(0) + ' mins</td>';
|
||||
|
||||
html += '<td class="tabletColumn">' + (timer.Status || '') + '</td>';
|
||||
html += '<td class="tabletColumn">';
|
||||
|
||||
if (timer.Status == 'ConflictedNotOk' || timer.Status == 'Error') {
|
||||
|
||||
html += '<span style="color:red;">';
|
||||
html += timer.Status;
|
||||
html += '</span>';
|
||||
|
||||
} else {
|
||||
html += timer.Status;
|
||||
}
|
||||
|
||||
html += '</td>';
|
||||
|
||||
html += '<td class="desktopColumn">';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue