From b95015251000f695ce9daefd0745b55dafff28b6 Mon Sep 17 00:00:00 2001 From: iamayushdas Date: Thu, 24 Jun 2021 18:05:52 +0530 Subject: [PATCH 1/2] fix: navigation path naming for apisix-java-plugin-runner --- website/src/theme/DocPage/index.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/website/src/theme/DocPage/index.js b/website/src/theme/DocPage/index.js index 29e81eeaf7b1a..9aea3f328685c 100644 --- a/website/src/theme/DocPage/index.js +++ b/website/src/theme/DocPage/index.js @@ -32,8 +32,9 @@ function DocPageContent({ currentDocRoute, versionMetadata, children }) { apisix : "getting-started", apisixDashboard : "dashboard", apisixIngressController : "what-is-apisix-ingress-controller", - apisixHelmChart : "install", - apisixDocker : "build-an-image-from-source" + apisixHelmChart : "seeking-help", + apisixDocker : "build-an-image-from-source", + apisixJavaPluginRunner : "overview" } useEffect(() => { if(docsSidebars[sidebarName][0].label === pageId.general){ @@ -48,6 +49,8 @@ function DocPageContent({ currentDocRoute, versionMetadata, children }) { document.querySelectorAll(".navbar__link--active")[0].text = "Apache APISIX™ Helm Chart"; } else if (document.getElementById(pageId.apisixDocker)) { document.querySelectorAll(".navbar__link--active")[0].text = "Apache APISIX™ Docker"; + } else if (document.getElementById(pageId.apisixJavaPluginRunner)) { + document.querySelectorAll(".navbar__link--active")[0].text = "Apache APISIX™ Java Plugin Runner"; } return () => { console.log('\u{1F680} documentation changed') From f32b61a93e957790a2e1d4844ca721ee062a7da0 Mon Sep 17 00:00:00 2001 From: iamayushdas Date: Mon, 28 Jun 2021 08:49:03 +0530 Subject: [PATCH 2/2] Trigger Build