Easier copy-linking for shortened URLs
parent
2ded816aa7
commit
54f712f294
|
@ -13,7 +13,11 @@ const populateRedirects = async (redirKey) => {
|
||||||
for (const redirect of redirects) {
|
for (const redirect of redirects) {
|
||||||
body.appendChild(
|
body.appendChild(
|
||||||
h("tr", {}, [
|
h("tr", {}, [
|
||||||
h("td", {}, h("pre", {}, [redirect.path])),
|
h(
|
||||||
|
"td",
|
||||||
|
{},
|
||||||
|
h("a", { href: "/" + redirect.path }, [h("pre", {}, [redirect.path])])
|
||||||
|
),
|
||||||
h(
|
h(
|
||||||
"td",
|
"td",
|
||||||
{},
|
{},
|
||||||
|
|
Loading…
Reference in New Issue