Skip to content

Commit 323ca7a

Browse files
committed
removed username from commit list
Signed-off-by: Vedansh Saini <[email protected]>
1 parent 90681a7 commit 323ca7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/scrumHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ ${userReason}`;
836836
if (showCommits && item._lastCommits && item._lastCommits.length) {
837837
item._lastCommits = item._allCommits.slice(0, numCommits);
838838
item._lastCommits.forEach(commit => {
839-
li += `<li style="list-style: disc; margin: 0 0 0 20px; padding: 0; color: #666;"><span style="color:#2563eb;">${commit.messageHeadline}</span><span style="color:#666; font-size: 11px;"> (${commit.author?.user?.login || commit.author?.name || 'unknown'}, ${new Date(commit.committedDate).toLocaleString()})</span></li>`;
839+
li += `<li style="list-style: disc; margin: 0 0 0 20px; padding: 0; color: #666;"><span style="color:#2563eb;">${commit.messageHeadline}</span><span style="color:#666; font-size: 11px;"> (${new Date(commit.committedDate).toLocaleString()})</span></li>`;
840840
});
841841
}
842842
li += `</li>`;

0 commit comments

Comments
 (0)