Skip to content

Commit

Permalink
Merge pull request #588 from thepolicylab-projectportals/hide-empty-b…
Browse files Browse the repository at this point in the history
…order

refactor: remove border when no expertise/requirement/keyDates
  • Loading branch information
hollandjg authored Sep 14, 2023
2 parents 899d768 + 0ef588e commit d18e376
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export const ProjectDetail: FunctionComponent<ProjectDetailProps> = ({
</div>
</section>

{status === "open" && (
{(expertise || requirement || keyDates) && status === "open" && (
<>
<hr className="my-8 border-gray-300 m-responsive" />
<CollaboratorDetails
Expand Down

0 comments on commit d18e376

Please sign in to comment.