We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93875f2 commit 1d4e8a5Copy full SHA for 1d4e8a5
common/script/utility.js
@@ -9,3 +9,8 @@ function addPlatformMaintainers() {
9
if (node.textContent.trim() == "Authors:") node.textContent = "Platform Mapping Maintainers:";
10
})
11
}
12
+function fixContributors() {
13
+ document.querySelectorAll("#gh-contributors li a").forEach(function(node){
14
+ if (node.textContent.indexOf("[bot]") > 0) node.parentElement.parentElement.removeChild(node.parentElement);
15
+ })
16
+}
0 commit comments