Skip to content

Commit

Permalink
bold changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonTDM authored Oct 7, 2024
1 parent 65453e0 commit 0a2c51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game/cl.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
commits.forEach((commit) => {
const listItem = document.createElement("li");
const itemText = document.createElement("pre");
itemText.textContent = `${commit.commit.author.name}: ${commit.commit.message}`;
itemText.textContent = `<b>${commit.commit.author.name}</b>: ${commit.commit.message}`;
commitList.appendChild(listItem);
listItem.appendChild(itemText);
});
Expand Down

0 comments on commit 0a2c51a

Please sign in to comment.