Call listPages on page load

This commit is contained in:
Brandon Rozek 2024-10-19 21:06:12 -04:00
parent 77831a1df6
commit 251e3355de
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480

View file

@ -81,6 +81,10 @@ async function listPages() {
return result;
}
document.addEventListener("DOMContentLoaded", (event) => {
listPages()
});
</script>
{{< /unsafe >}}