Fixed feedback text

This commit is contained in:
2025-10-31 10:37:12 -05:00
parent 0587616523
commit 24d18e369b

View File

@ -25,7 +25,7 @@ fetch("/pages/blog/"+search+".json").then(response => response.json()).then(data
postText = document.getElementById("postText");
postTitle.textContent = "Error fetching post";
postSubTitle.textContent = "What happened?"
postText.textContent = "You were trying to look for " + document.location.search + " Is this correct?"
postText.textContent = "You were trying to look for ( " + document.location.search + " ) is this correct?"
});