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

Uses now proper toLocaleString function

This commit is contained in:
Hadi Charara 2022-07-03 14:03:39 -04:00
parent 66f33b368b
commit df39a9a1ff
9 changed files with 22 additions and 22 deletions

View file

@ -90,7 +90,7 @@ export function getQueryPagingHtml (options) {
if (showControls) {
html += '<span style="vertical-align:middle;">';
html += globalize.translate('ListPaging', (totalRecordCount ? startIndex + 1 : 0).toLocaleString(), recordsEnd.toLocaleString(), totalRecordCount.toLocaleString());
html += globalize.translate('ListPaging', totalRecordCount ? startIndex + 1 : 0, recordsEnd, totalRecordCount);
html += '</span>';
}