mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
incorporate ParentIndexNumber into audio sort order
This commit is contained in:
parent
3798443c4c
commit
d775c77482
2 changed files with 9 additions and 1 deletions
|
@ -173,6 +173,7 @@
|
|||
html += '<th></th>';
|
||||
html += '<th>Track</th>';
|
||||
html += '<th>Duration</th>';
|
||||
html += '<th>Play Count</th>';
|
||||
html += '<th></th>';
|
||||
|
||||
html += '</tr>';
|
||||
|
@ -196,6 +197,8 @@
|
|||
|
||||
html += '<td>' + time + '</td>';
|
||||
|
||||
html += '<td>' + (item.UserData ? item.UserData.PlayCount : 0) + '</td>';
|
||||
|
||||
html += '<td>' + LibraryBrowser.getUserDataIconsHtml(item) + '</td>';
|
||||
|
||||
html += '</tr>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue