mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix no-sequence lint
This commit is contained in:
parent
ed8b274dbf
commit
9f19170dec
8 changed files with 11 additions and 11 deletions
|
@ -86,7 +86,7 @@ export function getQueryPagingHtml (options) {
|
|||
const recordsEnd = Math.min(startIndex + limit, totalRecordCount);
|
||||
const showControls = limit < totalRecordCount;
|
||||
|
||||
if (html += '<div class="listPaging">', showControls) {
|
||||
if ((html += '<div class="listPaging">', showControls)) {
|
||||
html += '<span style="vertical-align:middle;">';
|
||||
html += globalize.translate('ListPaging', (totalRecordCount ? startIndex + 1 : 0), recordsEnd, totalRecordCount);
|
||||
html += '</span>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue