Skip to content

Commit ee7b950

Browse files
committed
blocker and notes
Signed-off-by: Vedansh Saini <[email protected]>
1 parent 6467737 commit ee7b950

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/popup.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ <h4>Your Github Username</h4>
8181
<label id="checkboxLabel" for="showOpenLabel" class="text-gray-700 font-medium text-sm">Show Open/Closed Label</label>
8282
</div>
8383
<div class="my-4">
84-
<p class="text-sm font-medium">What is stopping you from doing your work?</p>
84+
<p class="text-sm font-medium">What is blocking you from making progress?</p>
8585
<input id="userReason" type="text" class="w-full text-gray-800 mt-3 rounded-xl px-4 py-1" placeholder="Enter your reason">
8686
<hr class="border-t-2 border-gray-700 mt-1 ">
8787
</div>
@@ -107,9 +107,9 @@ <h6 class="text-base font-semibold">Scrum Report</h6>
107107
<div>
108108
<h4 class="font-semibold text-xl">Note:</h4>
109109
<ul class="text-xs list-disc list-inside">
110-
<li>The PRs fetched are according to the date last reviewed by anyone. So if you reviewed a PR 10 days back, and someone reviewed it 2 days back, it will appear in your last week's activity. See <a target="_blank" href="https://github.com/fossasia/scrum_helper/issues/20">this issue</a>.
110+
<li>The PRs fetched are based on the most recent review by any contributor. If you reviewed a PR 10 days ago and someone else reviewed it 2 days ago, it will still appear in your activity for the past week. (<a target="_blank" href="https://github.com/fossasia/scrum_helper/issues/20">See this issue</a>.)
111111
</li>
112-
<li>By using the extension you understand that there might be discrepancies in the SCRUM generated. You are advised to edit the SCRUM afterwards to remove any discrepancies.
112+
<li>Please note that some discrepancies may occur in the generated SCRUM. We recommend manually reviewing and editing the report to ensure accuracy before sharing
113113
</li>
114114
</ul>
115115
</div>

src/scripts/scrumHelper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,14 +279,14 @@ function allIncluded(outputTarget = 'email') {
279279
${lastWeekUl}<br>
280280
<b>2. What do I plan to do ${weekOrDay2}?</b><br>
281281
${nextWeekUl}<br>
282-
<b>3. What is stopping me from doing my work?</b><br>
282+
<b>3. What is blocking me from making progress?</b><br>
283283
${userReason}`;
284284
} else {
285285
content = `<b>1. What did I do from ${formatDate(startingDate)} to ${formatDate(endingDate)}?</b><br>
286286
${lastWeekUl}<br>
287287
<b>2. What do I plan to do ${weekOrDay2}?</b><br>
288288
${nextWeekUl}<br>
289-
<b>3. What is stopping me from doing my work?</b><br>
289+
<b>3. What is blocking me from making progress?</b><br>
290290
${userReason}`;
291291
}
292292

0 commit comments

Comments
 (0)