This commit is contained in:
tree 2022-02-11 01:37:29 +01:00
rodič 57d9351f14
revize 1ce82e0c18
2 změnil soubory, kde provedl 1 přidání a 1 odebrání

Binární soubor nebyl zobrazen.

Před

Šířka:  |  Výška:  |  Velikost: 65 KiB

Za

Šířka:  |  Výška:  |  Velikost: 41 KiB

Zobrazit soubor

@ -18,7 +18,7 @@ function members(t) {
}
for (const t of teams.filter((t) => !t.parent)) {
console.log((t.id === 'core' ? '' : ' ') + `[${t.id}] +${members(t)}`);
console.log((t.id === "core" ? "" : " ") + `[${t.id}] +${members(t)}`);
for (const st of teams.filter((tx) => tx.parent === t.id)) {
console.log(` [${st.id}] +${members(st)}`);
for (const st2 of teams.filter((tx2) => tx2.parent === st.id)) {