This is an automated email from the ASF dual-hosted git repository.

juzhiyuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new 76e0e05  fix: fix broken links (#1533)
76e0e05 is described below

commit 76e0e05c86b83dedf4afa7d3fcc7a00f320453e7
Author: Cliff Su <[email protected]>
AuthorDate: Tue Mar 2 09:38:36 2021 +0800

    fix: fix broken links (#1533)
---
 web/src/components/Plugin/PluginDetail.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/web/src/components/Plugin/PluginDetail.tsx 
b/web/src/components/Plugin/PluginDetail.tsx
index dabc73e..476d74f 100644
--- a/web/src/components/Plugin/PluginDetail.tsx
+++ b/web/src/components/Plugin/PluginDetail.tsx
@@ -259,11 +259,11 @@ const PluginDetail: React.FC<Props> = ({
               onClick={() => {
                 if (name.startsWith('serverless')) {
                   window.open(
-                    
'https://github.com/apache/apisix/blob/master/doc/plugins/serverless.md',
+                    'https://apisix.apache.org/docs/apisix/plugins/serverless',
                   );
                 } else {
                   window.open(
-                    
`https://github.com/apache/apisix/blob/master/doc/plugins/${name}.md`,
+                    `https://apisix.apache.org/docs/apisix/plugins/${name}`,
                   );
                 }
               }}

Reply via email to