Skip to content

Commit

Permalink
FIX: fix name of the standup days
Browse files Browse the repository at this point in the history
  • Loading branch information
sahsisunny committed Jul 20, 2023
1 parent f8fea9a commit af53429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions standup/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ function createTableRowElement({ userName, imageUrl, userStandupData }) {
);

if (standupStatus[i] === '✅') {
completedTextElement.textContent += `Today's: ${completedTextData[i]}`;
yesterdayStandupElement.textContent += `Yesterday's: ${plannedText[i]}`;
completedTextElement.textContent += `Yesterday's: ${completedTextData[i]}`;
yesterdayStandupElement.textContent += `Today's: ${plannedText[i]}`;
blockersElement.textContent += `Blockers: ${blockersText[i]}`;

tooltipElement.appendChild(completedTextElement);
Expand Down

0 comments on commit af53429

Please sign in to comment.