mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add no-return-assign eslint rule and fix issues
This commit is contained in:
parent
e9f0a82d8c
commit
f4cd29ac17
9 changed files with 22 additions and 12 deletions
|
@ -26,7 +26,8 @@ function getEditorHtml() {
|
|||
html += '<div is="emby-itemscontainer" class="results vertical-wrap">';
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
return html += '</div>';
|
||||
html += '</div>';
|
||||
return html;
|
||||
}
|
||||
|
||||
function getDeviceHtml(device) {
|
||||
|
@ -61,7 +62,8 @@ function getDeviceHtml(device) {
|
|||
html += '</div>';
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
return html += '</button>';
|
||||
html += '</button>';
|
||||
return html;
|
||||
}
|
||||
|
||||
function getTunerName(providerId) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue