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

shuai pushed a commit to branch feat/team
in repository https://gitbox.apache.org/repos/asf/incubator-answer-website.git


The following commit(s) were added to refs/heads/feat/team by this push:
     new 920c648f feat: PPMC members sort by name
920c648f is described below

commit 920c648f50405a74dd18871392455710d6228f51
Author: shuai <[email protected]>
AuthorDate: Tue Apr 16 14:07:19 2024 +0800

    feat: PPMC members sort by name
---
 community/team.json | 34 +++++++++++++++++-----------------
 community/team.mdx  |  4 ++--
 2 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/community/team.json b/community/team.json
index 466002f8..6a4e4124 100644
--- a/community/team.json
+++ b/community/team.json
@@ -3,12 +3,6 @@
     "title": "PPMC",
     "type": "ppmc",
     "users": [
-      {
-        "name": "PrimmaAnna",
-        "avatar": "https://avatars.githubusercontent.com/u/131739771?v=4";,
-        "github": "https://github.com/PrimmaAnna";,
-        "role": "Operator"
-      },
       {
         "name": "chrisdutz",
         "avatar": "https://avatars.githubusercontent.com/u/651105?v=4";,
@@ -21,6 +15,12 @@
         "github": "https://github.com/fenbox";,
         "role": "Product Manager"
       },
+      {
+        "name": "jiangbonadia",
+        "avatar": "https://avatars.githubusercontent.com/u/1227386?v=4";,
+        "github": "https://github.com/jiangbonadia";,
+        "role": "COO"
+      },
       {
         "name": "joyqi",
         "avatar": "https://avatars.githubusercontent.com/u/59437?v=4";,
@@ -52,16 +52,10 @@
         "role": "Developer"
       },
       {
-        "name": "jiangbonadia",
-        "avatar": "https://avatars.githubusercontent.com/u/1227386?v=4";,
-        "github": "https://github.com/jiangbonadia";,
-        "role": "COO"
-      },
-      {
-        "name": "WillemJiang",
-        "avatar": "https://avatars.githubusercontent.com/u/219644?v=4";,
-        "github": "https://github.com/WillemJiang/";,
-        "role": "Mentor"
+        "name": "PrimmaAnna",
+        "avatar": "https://avatars.githubusercontent.com/u/131739771?v=4";,
+        "github": "https://github.com/PrimmaAnna";,
+        "role": "Operator"
       },
       {
         "name": "robinv8",
@@ -80,6 +74,12 @@
         "avatar": "https://avatars.githubusercontent.com/u/18818196?v=4";,
         "github": "https://github.com/tisonkun/";,
         "role": "Mentor"
+      },
+      {
+        "name": "WillemJiang",
+        "avatar": "https://avatars.githubusercontent.com/u/219644?v=4";,
+        "github": "https://github.com/WillemJiang/";,
+        "role": "Mentor"
       }
     ]
   },
@@ -312,4 +312,4 @@
       }
     ]
   }
-]
\ No newline at end of file
+]
diff --git a/community/team.mdx b/community/team.mdx
index d8d7cb44..417490ab 100644
--- a/community/team.mdx
+++ b/community/team.mdx
@@ -23,7 +23,7 @@ import UserData from './team.json';
                 if (v.type === 'contributor') {
                   return (
                     <div key={u.name} className="col-xl-3 col-lg-4 col-md-4 
col-sm-6 col-12 d-flex mb-1">
-                      <a href={u.github}>{u.name}</a>
+                      <a href={u.github} target="_blank">{u.name}</a>
                     </div>
                   )
                 }
@@ -31,7 +31,7 @@ import UserData from './team.json';
                   <div key={u.name} className="col-xl-3 col-lg-4 col-md-4 
col-sm-6 col-12 d-flex mb-4">
                       <img src={u.avatar} width="48" height="48" 
className="rounded me-2 lh-normal" />
                       <div>
-                        <a href={u.github} className="d-block 
lh-base">{u.name}</a>
+                        <a href={u.github} target="_blank" className="d-block 
lh-base">{u.name}</a>
                         <div className="fs-14 text-secondary">{u.role}</div>
                       </div>
                   </div>

Reply via email to