Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented
8
fork

Configure Feed

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

prevent js error on dropdown

+1 -3
+1 -3
docs/src/components/Versions.astro
··· 13 13 const versions = document.getElementById("versions"); 14 14 if (versions != null) { 15 15 versions.addEventListener("change", _ => { document.location.pathname = versions.value; }); 16 - document.querySelectorAll("#versions options").map(opt => { 17 - if (document.location.pathname.startsWith(opt.value)) { opt.selected = "selected"; } 18 - }); 16 + Array.from(versions.options).forEach(opt => document.location.pathname.startsWith(opt.value) && opt.selected = "selected"); 19 17 } 20 18 </script>