Skip to content

Commit

Permalink
fix: formatting preference
Browse files Browse the repository at this point in the history
  • Loading branch information
skifli authored Feb 18, 2024
1 parent ba671eb commit ca6af96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/pages/guestbook.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function addEntries() {

let pre = document.createElement('pre');
pre.className = "entry-name-and-timestamp";
pre.innerText = DOMPurify.sanitize(`${blocker.cleanText(data[index].Name)} (${data[index].Timestamp}).`);
pre.innerText = DOMPurify.sanitize(`${blocker.cleanText(data[index].Name)} (${data[index].Timestamp})`);

let pre2 = document.createElement('pre');
pre2.className = "entry-message";
Expand Down

0 comments on commit ca6af96

Please sign in to comment.