Skip to content

Commit

Permalink
Fix it for real
Browse files Browse the repository at this point in the history
  • Loading branch information
dontcallmedom committed Nov 13, 2023
1 parent c715583 commit b6ee722
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions report.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,16 +239,16 @@ Promise.all([

const statList = document.getElementById("stats");
const chairstat = document.createElement("li");
chairstat.appendChild(document.createTextNode(`${stats.nochairs} (${Math.round(100 * stats.nochairs / groupdata.length)}%) groups have no chair`));
chairstat.appendChild(document.createTextNode(`${stats.nochairs} (${Math.round(100 * stats.nochairs / inscopeGroups)}%) groups have no chair`));
statList.appendChild(chairstat);
const staffstat = document.createElement("li");
staffstat.appendChild(document.createTextNode(`${stats.nostaff} (${Math.round(100 * stats.nostaff / groupdata.length)}%) groups have no representative from the W3C staff`));
staffstat.appendChild(document.createTextNode(`${stats.nostaff} (${Math.round(100 * stats.nostaff / inscopeGroups)}%) groups have no representative from the W3C staff`));
statList.appendChild(staffstat);
const repostat = document.createElement("li");
repostat.appendChild(document.createTextNode(`${stats.norepo} (${Math.round(100 * stats.norepo / groupdata.length)}%) groups have no known repository`));
repostat.appendChild(document.createTextNode(`${stats.norepo} (${Math.round(100 * stats.norepo / inscopeGroups)}%) groups have no known repository`));
statList.appendChild(repostat);
const specstat = document.createElement("li");
specstat.appendChild(document.createTextNode(`${stats.nospec} (${Math.round(100 * stats.nospec / groupdata.length)}%) groups are not intending to build technical specifications`));
specstat.appendChild(document.createTextNode(`${stats.nospec} (${Math.round(100 * stats.nospec / inscopeGroups)}%) groups are not intending to build technical specifications`));
statList.appendChild(specstat);
main.setAttribute("aria-busy", false);
});

0 comments on commit b6ee722

Please sign in to comment.