Skip to content

Commit 148977e

Browse files
authored
remove remaining contributors reference (#35)
Removed the remainingContributorsPresent reference This was a leftover variable from the ORCA code that was removed. Testing on my local works, but my local worked before the last PR so I'm not sure if that's a great indicator. I scanned the rest of this file and didn't see any other bad references. Also had Claude search the rest of the codebase and didn't find anything.
1 parent 7667ab4 commit 148977e

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

python/templates/index.html.jinja

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,6 @@
221221
data_raw.push(JSON.parse(JSON.stringify(values[1]))) // repositories
222222
data_raw.push(JSON.parse(JSON.stringify(values[2]))) // links
223223
224-
/////////////////////////////////////////////////
225-
// Very specific to this example, but get some statistics on the data and put this in the intro text
226-
/////////////////////////////////////////////////
227-
if(remainingContributorsPresent) {
228-
let num_contributors = values[0].length + values[3].length
229-
document.getElementById("repo-num-contributors").innerHTML = `~${formatDigit(num_contributors)} `
230-
}// if
231-
232224
// How many contributors are there in the inner two rings
233225
document.querySelectorAll(".top-contributor-num").forEach(d => d.innerHTML = `${formatDigit(values[0].length)} `)
234226

0 commit comments

Comments
 (0)