We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b685520 commit 9345756Copy full SHA for 9345756
1 file changed
src/content.js
@@ -120,7 +120,7 @@ function appendPRText(currentNum, repoInfo) {
120
121
if (prs !== undefined) {
122
let prText = `${prs}`;
123
- if (firstPrNumber === +currentNum) {
+ if (firstPrNumber === +currentNum && statsScope !== "account") {
124
prText = "First PR";
125
if (prs > 1) {
126
prText += ` out of ${prs}`;
@@ -131,7 +131,7 @@ function appendPRText(currentNum, repoInfo) {
131
132
if (issues !== undefined) {
133
let issueText = `${issues}`;
134
- if (firstIssueNumber === +currentNum) {
+ if (firstIssueNumber === +currentNum && statsScope !== "account") {
135
issueText = "First Issue";
136
if (issues > 1) {
137
issueText += ` out of ${issues}`;
0 commit comments