Skip to content

Commit

Permalink
Make position conditionally rendered
Browse files Browse the repository at this point in the history
  • Loading branch information
WillHannon-MCB committed Aug 15, 2024
1 parent 88f9d3f commit 1f8f0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vitepress/theme/Team.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default {
<div v-for="alum in alumniCategories[title]" :key="alum.name" class="ml-4">
<div class="font-bold">{{ alum.name }}</div>
<div>{{ alum.start }} - {{ alum.end }}</div>
<div v-html="alum.currentPosition"></div>
<div v-if="alum.currentPosition" v-html="alum.currentPosition"></div>
</div>
</div>
</div>
Expand Down

0 comments on commit 1f8f0c1

Please sign in to comment.