File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,18 @@ export const PageIssueLink: Component = () => {
8
8
const i18n = useI18n ( ) ;
9
9
10
10
const srcPath = createMemo ( ( ) => {
11
- return `https://github.com/solidjs/solid-docs-next/issues/new?assignees=ladybluenotes&labels=improve+documentation%2Cpending+review&projects=&template=CONTENT.yml&title=[Content]:&subject=${ getEntryFileName ( ) } ` ;
11
+ return (
12
+ "https://github.com/solidjs/solid-docs-next/issues/new" +
13
+ "?assignees=ladybluenotes" +
14
+ "&labels=improve+documentation%2Cpending+review" +
15
+ "&projects=" +
16
+ "&template=CONTENT.yml" +
17
+ "&title=[Content]:" +
18
+ `&subject=${ getEntryFileName ( ) } ` +
19
+ `&page=${ window . location . href } `
20
+ ) ;
12
21
} ) ;
22
+
13
23
return (
14
24
< a
15
25
class = "flex no-underline hover:text-blue-700 dark:hover:text-blue-300 dark:text-slate-300"
You can’t perform that action at this time.
0 commit comments