Resorting
This commit is contained in:
parent
53fc299f36
commit
54468bde29
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue