This is an automated email from the ASF dual-hosted git repository.
likeguo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shenyu-website.git
The following commit(s) were added to refs/heads/main by this push:
new ee409e76ce0 fix: fix mailto links error (#1090)
ee409e76ce0 is described below
commit ee409e76ce0441d767f0f58ed085eaac823de368
Author: shown <[email protected]>
AuthorDate: Wed Oct 22 23:10:29 2025 +0800
fix: fix mailto links error (#1090)
Signed-off-by: yuluo-yx <[email protected]>
---
i18n/zh/docusaurus-theme-classic/footer.json | 2 +-
src/components/Footer.tsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/i18n/zh/docusaurus-theme-classic/footer.json
b/i18n/zh/docusaurus-theme-classic/footer.json
index b3e442842b8..17066ae7e85 100755
--- a/i18n/zh/docusaurus-theme-classic/footer.json
+++ b/i18n/zh/docusaurus-theme-classic/footer.json
@@ -57,7 +57,7 @@
},
"link.item.label.Subscribe Mail": {
"message": "订阅邮件",
- "description": "The label of footer link with label=Subscribe Mail linking
to mailto://[email protected]"
+ "description": "The label of footer link with label=Subscribe Mail
linking to mailto:[email protected]"
},
"link.item.label.Mail Archive": {
"message": "邮件归档",
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index 6c5a75e162e..4c32255b6c6 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -44,7 +44,7 @@ const Footer = (): React.ReactElement => (
<span className={styles.linkSpan}><Translate>Subscribe
mailing list</Translate></span>
<div className={styles.link}>
<div className={styles.linkItem}><a
className={styles.linkA}
href='./community/contributor-guide#join-the-discussion'><Translate>How to
subscribe</Translate></a></div>
- <div className={styles.linkItem}><a
className={styles.linkA}
href='mailto://[email protected]'><Translate>Subscribe
Mail</Translate></a></div>
+ <div className={styles.linkItem}><a
className={styles.linkA}
href='mailto:[email protected]'><Translate>Subscribe
Mail</Translate></a></div>
<div className={styles.linkItem}><a
className={styles.linkA}
href='https://lists.apache.org/[email protected]'><Translate>Mail
Archive</Translate></a></div>
</div>
</div>