File tree 2 files changed +4
-6
lines changed
routes/solid-start/guides
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ title: Security
5
5
## XSS (Cross Site Scripting)
6
6
7
7
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 ) .
9
9
10
10
To protect your application from XSS attacks:
11
11
Original file line number Diff line number Diff line change @@ -3,13 +3,11 @@ import { Icon } from "solid-heroicons";
3
3
import { exclamationTriangle } from "solid-heroicons/outline" ;
4
4
import { useI18n } from "~/i18n/i18n-context" ;
5
5
import { getEntryFileName } from "~/i18n/helpers" ;
6
+ import { useLocation } from "@solidjs/router" ;
6
7
7
8
export const PageIssueLink : Component = ( ) => {
8
9
const i18n = useI18n ( ) ;
9
-
10
- const [ mounted , setMounted ] = createSignal ( false ) ;
11
-
12
- onMount ( ( ) => setMounted ( true ) ) ;
10
+ const location = useLocation ( ) ;
13
11
14
12
const srcPath = createMemo ( ( ) => {
15
13
return (
@@ -20,7 +18,7 @@ export const PageIssueLink: Component = () => {
20
18
"&template=CONTENT.yml" +
21
19
"&title=[Content]:" +
22
20
`&subject=${ getEntryFileName ( ) } ` +
23
- `&page=${ mounted ( ) ? window . location . href : "" } `
21
+ `&page=${ `https://docs.solidjs.com/ ${ location . pathname } ` } `
24
22
) ;
25
23
} ) ;
26
24
You can’t perform that action at this time.
0 commit comments