We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 955ba63 + 393dc7e commit 246ca1dCopy full SHA for 246ca1d
1 file changed
src/ui/page-issue-link.tsx
@@ -18,7 +18,7 @@ export const PageIssueLink: Component = () => {
18
"&template=CONTENT.yml" +
19
"&title=[Content]:" +
20
`&subject=${getEntryFileName()}` +
21
- `&page=${`https://docs.solidjs.com/${location.pathname}`}`
+ `&page=https://docs.solidjs.com${location.pathname}`
22
);
23
});
24
@@ -28,7 +28,11 @@ export const PageIssueLink: Component = () => {
28
href={srcPath()}
29
target="_blank"
30
>
31
- <Icon class="mr-1 w-[16px]" path={exclamationTriangle} />
+ <Icon
32
+ aria-hidden="true"
33
+ class="mr-1 w-[16px]"
34
+ path={exclamationTriangle}
35
+ />
36
{i18n.t("contribute.report")}
37
</a>
38
0 commit comments