Skip to content

Commit

Permalink
fixes group section names
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleniemeyer committed Nov 17, 2023
1 parent 34e53ac commit 8881839
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/routes/(app)/lab/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<Person person={person} highlight={isPersonHighlighted(person.id)} />
{/each}

<h3>Former Affiliated Ph.D. students</h3>
<h3>Former affiliated Ph.D. students</h3>

{#each $profile.getPeople(
person => !person.active && !person.advised && person.level === "phd",
Expand All @@ -107,16 +107,16 @@
<Person person={person} highlight={isPersonHighlighted(person.id)} />
{/each}

<h3>Former Postdocs</h3>
<!--<h3>Former postdocs</h3>
{#each $profile.getPeople(
person => !person.active && person.level === "postdoc",
person => -person.startdate
) as person }
<Person person={person} highlight={isPersonHighlighted(person.id)} />
{/each}
{/each}-->

<h3>Former Masters</h3>
<h3>Former M.S. students</h3>

{#each $profile.getPeople(
person => !person.active && person.level === "masters",
Expand All @@ -126,7 +126,7 @@
{/each}


<h3>Former Undergrads</h3>
<h3>Former undergraduate students</h3>
{#each $profile.getPeople(
person => !person.active && person.level === "undergrad",
person => -person.startdate
Expand Down

0 comments on commit 8881839

Please sign in to comment.