mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fixed tabs and spacing
This commit is contained in:
parent
c7271b6fb4
commit
c2563c5675
1 changed files with 11 additions and 11 deletions
|
@ -149,10 +149,10 @@ define(['loading', 'appRouter', 'layoutManager', 'connectionManager', 'userSetti
|
|||
mediaSources.sort(function(a, b) {
|
||||
var nameA = a.Name.toUpperCase();
|
||||
var nameB = b.Name.toUpperCase();
|
||||
if(nameA < nameB) {
|
||||
if (nameA < nameB) {
|
||||
return -1;
|
||||
}
|
||||
if(nameA > nameB) {
|
||||
if (nameA > nameB) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue