this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› Fix back button not working with JS when no previous page

+1 -1
+1 -1
src/components/StrongHeader.astro
··· 37 37 <a 38 38 class="back" 39 39 href={back} 40 - onclick="event.preventDefault(); history.back();" 40 + onclick="if (history.length > 1) { event.preventDefault(); history.back(); }" 41 41 > 42 42 &lt;- <i18n>back</i18n> 43 43 </a>