gpstrek - Sort file names in route loading menu

master
Martin Boonk 2023-05-22 21:07:13 +02:00
parent ee383789e9
commit 2813a43c12
1 changed files with 1 additions and 1 deletions

View File

@ -962,7 +962,7 @@ let showRouteSelector = function(){
}
};
STORAGE.list(/\.trf$/).forEach((file)=>{
STORAGE.list(/\.trf$/).sort().forEach((file)=>{
menu[file] = ()=>{handleLoading(file);};
});