Skip to content

Commit

Permalink
Add pre-req to node detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish committed Jan 13, 2025
1 parent 272d727 commit 06fa561
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,13 @@ const SummerCoursePage = async ({node, ...props}: Props) => {
</div>
)}

{node.sumCoursePrerequisites && (
<div>
<span>Pre-requisites: </span>
<Wysiwyg html={node.sumCoursePrerequisites.processed} />
</div>
)}

{node.sumCourseCrossListing && (
<div>
<span>Cross Listing{node.sumCourseCrossListing.length > 1 ? "s" : ""}: </span>
Expand Down

0 comments on commit 06fa561

Please sign in to comment.