Browse Source

gui: Sort device folder lists by label

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3381
Cedric Staniewski 9 years ago
parent
commit
21f5b16e47
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/default/syncthing/core/syncthingController.js

+ 1 - 1
gui/default/syncthing/core/syncthingController.js

@@ -1453,7 +1453,7 @@ angular.module('syncthing.core')
                 }
             }
 
-            folders.sort();
+            folders.sort(folderCompare);
             return folders;
         };