This is an automated email from the ASF dual-hosted git repository. shuai pushed a commit to branch feat/1.2.1/ui in repository https://gitbox.apache.org/repos/asf/incubator-answer.git
commit 5a06b5d2ac800f127e5cca64effda7a02a023819 Author: shuai <[email protected]> AuthorDate: Wed Nov 15 12:40:32 2023 +0800 fix: github links error --- ui/src/pages/Admin/Dashboard/components/AnswerLinks/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/src/pages/Admin/Dashboard/components/AnswerLinks/index.tsx b/ui/src/pages/Admin/Dashboard/components/AnswerLinks/index.tsx index 89ec601d..b2a04ffa 100644 --- a/ui/src/pages/Admin/Dashboard/components/AnswerLinks/index.tsx +++ b/ui/src/pages/Admin/Dashboard/components/AnswerLinks/index.tsx @@ -50,7 +50,10 @@ const AnswerLinks = () => { </a> </Col> <Col xs={6}> - <a href="https://answer.dev/docs" target="_blank" rel="noreferrer"> + <a + href="https://github.com/apache/incubator-answer" + target="_blank" + rel="noreferrer"> {t('github')} </a> </Col>
