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

refactor: Remove redundant access to the array

This commit is contained in:
Dmitry Lyzo 2022-01-30 16:10:10 +03:00
parent 2248989896
commit ebaa5026d9

View file

@ -148,11 +148,7 @@ import ServerConnections from '../ServerConnections';
elem.classList.add('listItemBodyText');
if (textlines[i]) {
elem.innerText = textlines[i];
} else {
elem.innerHTML = ' ';
}
elem.innerText = text;
html += elem.outerHTML;
}