Resorting

This commit is contained in:
Kasra Bigdeli 2020-08-16 07:55:13 -04:00
parent 53fc299f36
commit 54468bde29
1 changed files with 4 additions and 2 deletions

View File

@ -162,8 +162,10 @@ function buildDist() {
list.push(a); list.push(a);
names[a.name] = true; names[a.name] = true;
} }
}) });
v3List.oneClickApps = list; v3List.oneClickApps = list.sort(function (a, b) {
return `${a.name}`.localeCompare(b.name);
});
allAppsList.appList = list.map(l => l.name); allAppsList.appList = list.map(l => l.name);
allAppsList.appDetails = v3List.oneClickApps; allAppsList.appDetails = v3List.oneClickApps;