From 7f051e76be53f59121b7f254bc98e9ffcb71ee82 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Fri, 20 Jan 2023 01:39:31 +0100 Subject: [PATCH] =?UTF-8?q?Tri=20par=20ordre=20alphab=C3=A9tique=20(tous?= =?UTF-8?q?=20compendiums)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le tri étati fait séparément pas compendium, du coup, la présentation des résultats n'était pas toujours pratique --- module/environnement.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/module/environnement.js b/module/environnement.js index 4c9e58ba..91b412fe 100644 --- a/module/environnement.js +++ b/module/environnement.js @@ -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) {