Skip to content

Commit 9bf470c

Browse files
authored
Merge pull request #14770 from wolovim/fix-svg-url
fix: asset page svg download url
2 parents fe11d72 + f6e9042 commit 9bf470c

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
@@ -65,7 +65,12 @@ const AssetDownload = ({
6565
{extname(imgSrc).slice(1).toUpperCase()})
6666
</ButtonLink>
6767
{svgUrl && (
68-
<ButtonLink href={svgUrl} onClick={matomoHandler} target="_blank">
68+
<ButtonLink
69+
href={svgUrl}
70+
onClick={matomoHandler}
71+
target="_blank"
72+
locale={false}
73+
>
6974
{t("page-assets-download-download")} (SVG)
7075
</ButtonLink>
7176
)}

0 commit comments

Comments
 (0)