You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ur...@apache.org on 2022/09/06 04:10:46 UTC

[pulsar-site] branch main updated (b986bf142ae -> 85b15be66b2)

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

urfree pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


    from b986bf142ae [build]force build by empty commit: BUILD_VERSIONS=2.9.x,2.8.x,2.7.4
     new 92ee6609dbe fix versions label
     new 85b15be66b2 [build]force build by empty commit: BUILD_VERSIONS=2.9.x,2.8.x,2.7.4

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 site2/website-next/src/theme/DocsVersionDropdownNavbarItem.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[pulsar-site] 02/02: [build]force build by empty commit: BUILD_VERSIONS=2.9.x,2.8.x,2.7.4

Posted by ur...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

urfree pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git

commit 85b15be66b2bad0f0ca234b5efaddd5a4587cb2f
Author: Li Li <ur...@apache.org>
AuthorDate: Tue Sep 6 12:10:37 2022 +0800

    [build]force build by empty commit: BUILD_VERSIONS=2.9.x,2.8.x,2.7.4
    
    Signed-off-by: Li Li <ur...@apache.org>


[pulsar-site] 01/02: fix versions label

Posted by ur...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

urfree pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git

commit 92ee6609dbe56a66eae645739aed90ea68ee6f40
Author: Li Li <ur...@apache.org>
AuthorDate: Tue Sep 6 12:10:28 2022 +0800

    fix versions label
    
    Signed-off-by: Li Li <ur...@apache.org>
---
 site2/website-next/src/theme/DocsVersionDropdownNavbarItem.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/site2/website-next/src/theme/DocsVersionDropdownNavbarItem.js b/site2/website-next/src/theme/DocsVersionDropdownNavbarItem.js
index 6daa039b3fd..d0fbd614815 100644
--- a/site2/website-next/src/theme/DocsVersionDropdownNavbarItem.js
+++ b/site2/website-next/src/theme/DocsVersionDropdownNavbarItem.js
@@ -16,7 +16,7 @@ import { useDocsPreferredVersion } from "@docusaurus/theme-common";
 import { translate } from "@docusaurus/Translate";
 let versions = require("../../versions.json");
 const _latestVersion = versions[0];
-versions = [{ name: "current", label: "Master", path: "/docs/next" }]
+versions = [{ name: "current", label: "Next", path: "/docs/next" }]
   .concat(
     versions.map((item) => {
       return {
@@ -29,7 +29,7 @@ versions = [{ name: "current", label: "Master", path: "/docs/next" }]
   .slice(0, 5)
   .concat({
     name: "others",
-    label: "Other",
+    label: "Others",
     path: "/versions",
   });