This is an automated email from the ASF dual-hosted git repository.
lizhimins pushed a commit to branch rocketmq-studio
in repository https://gitbox.apache.org/repos/asf/rocketmq-dashboard.git
The following commit(s) were added to refs/heads/rocketmq-studio by this push:
new 6dea41b2 fix: add rel protection for settings links (#830)
6dea41b2 is described below
commit 6dea41b20f68f174edc99b8e49fd7a2f8bb9a147
Author: aias00 <[email protected]>
AuthorDate: Tue Aug 4 03:02:48 2026 -0700
fix: add rel protection for settings links (#830)
---
web/src/pages/settings/index.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/web/src/pages/settings/index.tsx b/web/src/pages/settings/index.tsx
index 3f613fcc..97acac9d 100644
--- a/web/src/pages/settings/index.tsx
+++ b/web/src/pages/settings/index.tsx
@@ -553,13 +553,13 @@ const AboutTab = () => (
<Title level={5}>相关链接</Title>
<Space size="middle" style={{ marginBottom: 24 }}>
- <TypoLink href="https://github.com/apache/rocketmq" target="_blank">
+ <TypoLink href="https://github.com/apache/rocketmq" target="_blank"
rel="noopener noreferrer">
<GithubOutlined /> GitHub
</TypoLink>
- <TypoLink href="https://rocketmq.apache.org/docs/" target="_blank">
+ <TypoLink href="https://rocketmq.apache.org/docs/" target="_blank"
rel="noopener noreferrer">
<BookOutlined /> 文档中心
</TypoLink>
- <TypoLink href="https://rocketmq.apache.org/" target="_blank">
+ <TypoLink href="https://rocketmq.apache.org/" target="_blank"
rel="noopener noreferrer">
<GlobalOutlined /> RocketMQ 社区
</TypoLink>
</Space>