Skip to content

Commit

Permalink
Generated by b1219af882196e1a38d25d1d255f43fc7a17fe95
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 24, 2022
1 parent bf011c3 commit 680e90e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions common/script/utility.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ function addPlatformMaintainers() {
if (node.textContent.trim() == "Authors:") node.textContent = "Platform Mapping Maintainers:";
})
}
function fixContributors() {
document.querySelectorAll("#gh-contributors li a").forEach(function(node){
if (node.textContent.indexOf("[bot]") > 0) node.parentElement.parentElement.removeChild(node.parentElement);
})
}

0 comments on commit 680e90e

Please sign in to comment.