1
0
Fork 0
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:
DesertCookie 2020-05-16 16:11:39 +02:00
parent c7271b6fb4
commit c2563c5675

View file

@ -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;