Skip to content

Commit

Permalink
added technical advisor to directors
Browse files Browse the repository at this point in the history
  • Loading branch information
javalosr2004 committed Sep 21, 2024
1 parent 6006f40 commit 0e19709
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,14 @@ export async function getStaticProps() {
}
}
directors: personCollection (where:{role_contains:"Director", isActive:true, isAlumni:false}, order:fullName_ASC) {
directors: personCollection (where:{
OR: [
{role_contains: "Director"},
{role_contains: "Tech Advisor"}
],
isActive:true, isAlumni:false
},
order:fullName_ASC) {
items {
fullName
role
Expand Down

0 comments on commit 0e19709

Please sign in to comment.