Skip to content

Commit 246ca1d

Browse files
Merge branch 'main' into fix-build-errors
2 parents 955ba63 + 393dc7e commit 246ca1d

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/ui/page-issue-link.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const PageIssueLink: Component = () => {
1818
"&template=CONTENT.yml" +
1919
"&title=[Content]:" +
2020
`&subject=${getEntryFileName()}` +
21-
`&page=${`https://docs.solidjs.com/${location.pathname}`}`
21+
`&page=https://docs.solidjs.com${location.pathname}`
2222
);
2323
});
2424

@@ -28,7 +28,11 @@ export const PageIssueLink: Component = () => {
2828
href={srcPath()}
2929
target="_blank"
3030
>
31-
<Icon class="mr-1 w-[16px]" path={exclamationTriangle} />
31+
<Icon
32+
aria-hidden="true"
33+
class="mr-1 w-[16px]"
34+
path={exclamationTriangle}
35+
/>
3236
{i18n.t("contribute.report")}
3337
</a>
3438
);

0 commit comments

Comments
 (0)