This is an automated email from the ASF dual-hosted git repository. yumeng pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git
commit df13b53c2022bb954d44e7f09bded2eba43e23ba Author: ZiyuTao <[email protected]> AuthorDate: Wed Sep 14 18:17:38 2022 +0800 fix: link -> target _blank --- src/components/Sections/Components.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Sections/Components.tsx b/src/components/Sections/Components.tsx index ee3a8f0f0..2bcad7516 100644 --- a/src/components/Sections/Components.tsx +++ b/src/components/Sections/Components.tsx @@ -47,7 +47,7 @@ export const SectionImg = ({ src }: { src: string }) => <img src={src} alt="" cl " /> export const InlineLink = ({ link, children }: { link: string, children: React.ReactNode }) => - <a className="text-primary-500" + <a className="text-primary-500" target='_blank' href={link}>{children} </a>
