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.
2 parents 69d5b90 + 8bc13a9 commit 308f93bCopy full SHA for 308f93b
1 file changed
Update_website/contributor.js
@@ -116,6 +116,7 @@ function renderContributors(contributors) {
116
avatarImg.src = contributor.avatar_url;
117
avatarImg.alt = `${contributor.login}'s Picture`;
118
let name = contributor.name || contributor.login;
119
+ const fname = name;
120
if (name.length > 12) {
121
name = name.slice(0, 10) + "...";
122
}
@@ -148,7 +149,8 @@ function renderContributors(contributors) {
148
149
</div>
150
</div>`;
151
- if (cheak > 0 && name != "azfar-2") cont.appendChild(contributorCard);
152
+ if (cheak > 0 && fname != "azfar-2" && fname != "Ayushmaanagarwal1211")
153
+ cont.appendChild(contributorCard);
154
cheak++;
155
});
156
0 commit comments