Tri par ordre alphabétique (tous compendiums)
Le tri étati fait séparément pas compendium, du coup, la présentation des résultats n'était pas toujours pratique
This commit is contained in:
parent
38db7fb7c8
commit
7f051e76be
@ -62,7 +62,9 @@ export class Environnement {
|
||||
const compendiumsElement = await Promise.all(
|
||||
this.compendiumTables.map(async compTable => await compTable.getContent(itemFrequence, filter))
|
||||
);
|
||||
return compendiumsElement.reduce((a, b) => a.concat(b))
|
||||
const elements = compendiumsElement.reduce((a, b) => a.concat(b));
|
||||
elements.sort(Misc.ascending(it => it.name))
|
||||
return elements;
|
||||
}
|
||||
|
||||
async buildTable(itemFrequence, filter = it => true) {
|
||||
|
Loading…
Reference in New Issue
Block a user