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:
parent
2248989896
commit
ebaa5026d9
1 changed files with 1 additions and 5 deletions
|
@ -148,11 +148,7 @@ import ServerConnections from '../ServerConnections';
|
||||||
|
|
||||||
elem.classList.add('listItemBodyText');
|
elem.classList.add('listItemBodyText');
|
||||||
|
|
||||||
if (textlines[i]) {
|
elem.innerText = text;
|
||||||
elem.innerText = textlines[i];
|
|
||||||
} else {
|
|
||||||
elem.innerHTML = ' ';
|
|
||||||
}
|
|
||||||
|
|
||||||
html += elem.outerHTML;
|
html += elem.outerHTML;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue