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 = () => {
88 const i18n = useI18n ( ) ;
99
1010 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+ ) ;
1221 } ) ;
22+
1323 return (
1424 < a
1525 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