We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b3d8a commit a228b90Copy full SHA for a228b90
src/Wiki/sitemaplinks.html
@@ -177,7 +177,7 @@ <h2>Wiki Posts</h2>
177
wikis.forEach(wiki => {
178
const li = document.createElement('li');
179
li.innerHTML = `
180
- <h3><a href="https://thejsurlback.onrender.com/wiki/${encodeURIComponent(wiki.title)}">${wiki.title}</a></h3>
+ <h3><a href="https://thejsurlback.onrender.com/wiki/${encodeURIComponent(wiki.title)}?user=${btoa(localStorage.getItem('username'))}">${wiki.title}</a></h3>
181
`;
182
wikiList.appendChild(li);
183
});
0 commit comments