Skip to content
Snippets Groups Projects
Commit 34758d29 authored by Johann Ruiz's avatar Johann Ruiz
Browse files

Adding PI

parent 9391d567
No related branches found
No related tags found
No related merge requests found
Pipeline #10693 passed
......@@ -10,7 +10,7 @@ export default function LabsListItem(props: { researchLabItem: ResearchLabItem }
</Link>
<h2 className="lab-college">{props.researchLabItem.college}</h2>
<h3 className="lab-pi">{props.researchLabItem.pi}</h3>
<h3 className="lab-pi">{props.researchLabItem.principle_investigator}</h3>
<h4 className="lab-description"
title={props.researchLabItem.description}>{props.researchLabItem.description}</h4>
</li>
......
......@@ -2,7 +2,7 @@ export interface ResearchLabItem {
id: number;
name: string;
url: string;
pi: string;
principle_investigator: string;
college: string;
description: string;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment