Skip to content

Commit 07393fb

Browse files
committed
build fix
1 parent e344025 commit 07393fb

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/routes/solid-start/guides/security.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Security
55
## XSS (Cross Site Scripting)
66

77
Solid automatically escape values passed to JSX expressions to reduce the risk of XSS attacks.
8-
However, this protection does not apply when using [`innerHTML`](/reference/jsx-attributes/innerhtml-or-textcontent#innerhtml-or-textcontent).
8+
However, this protection does not apply when using [`innerHTML`](/reference/jsx-attributes/innerhtml).
99

1010
To protect your application from XSS attacks:
1111

src/ui/page-issue-link.tsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ import { Icon } from "solid-heroicons";
33
import { exclamationTriangle } from "solid-heroicons/outline";
44
import { useI18n } from "~/i18n/i18n-context";
55
import { getEntryFileName } from "~/i18n/helpers";
6+
import { useLocation } from "@solidjs/router";
67

78
export const PageIssueLink: Component = () => {
89
const i18n = useI18n();
9-
10-
const [mounted, setMounted] = createSignal(false);
11-
12-
onMount(() => setMounted(true));
10+
const location = useLocation();
1311

1412
const srcPath = createMemo(() => {
1513
return (
@@ -20,7 +18,7 @@ export const PageIssueLink: Component = () => {
2018
"&template=CONTENT.yml" +
2119
"&title=[Content]:" +
2220
`&subject=${getEntryFileName()}` +
23-
`&page=${mounted() ? window.location.href : ""}`
21+
`&page=${`https://docs.solidjs.com/${location.pathname}`}`
2422
);
2523
});
2624

0 commit comments

Comments
 (0)