Skip to content

Commit 5ed5752

Browse files
authored
Merge pull request #13251 from ethereum/fix-assets-image-links
Fix assets download links
2 parents ed6ecf3 + 9298441 commit 5ed5752

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/components/AssetDownload/index.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,12 @@ const AssetDownload = ({
5757
)}
5858
</Box>
5959
<Flex gap={5} mt={4}>
60-
<ButtonLink href={imgSrc} onClick={matomoHandler} target="_blank">
60+
<ButtonLink
61+
href={imgSrc}
62+
onClick={matomoHandler}
63+
target="_blank"
64+
locale={false}
65+
>
6166
{t("page-assets-download-download")} (
6267
{extname(imgSrc).slice(1).toUpperCase()})
6368
</ButtonLink>

0 commit comments

Comments
 (0)