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.
2 parents 7ba5f91 + af7d4d5 commit c5372f6Copy full SHA for c5372f6
template/home.html
@@ -24,7 +24,9 @@ <h1 class="text-center site-title">doc.crds.dev</h1>
24
const input = useRef(null);
25
26
const onSubmit = e => {
27
- window.location.assign(`/${url}`);
+ const urlParts = url.split("/");
28
+ urlParts[0] = urlParts[0].toLowerCase();
29
+ window.location.assign(`/${urlParts.join("/")}`);
30
e.preventDefault();
31
};
32
0 commit comments