mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Replace innerHtml to innerText
This commit is contained in:
parent
9677f3cd7c
commit
c1302831a9
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ import '../styles/flexstyles.scss';
|
|||
if (layoutManager.tv) {
|
||||
currentTimeText.classList.remove('hide');
|
||||
setInterval(function() {
|
||||
currentTimeText.innerHTML = datetime.getDisplayTime(new Date());
|
||||
currentTimeText.innerText = datetime.getDisplayTime(new Date());
|
||||
}, 1000);
|
||||
} else {
|
||||
currentTimeText.classList.add('hide');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue