Skip to content

Commit

Permalink
add key field for rolling admission
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikskog committed Sep 19, 2024
1 parent 2c59ce3 commit 4457a28
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/career/components/JobDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ const JobDetails: FC<IProps> = ({ opportunity }) => (
<p>Type: {opportunity.employment.name}</p>
<p>Sted: {formatLocations(opportunity.location.map((loc) => loc.name))}</p>
<p>Frist: {opportunity.deadline_asap ? 'Snarest' : formatDeadline(opportunity.deadline)}</p>
{opportunity.rolling_admission && (
<p>
<strong>Fortløpende opptak: Ja</strong>
</p>
)}
</div>
<ApplyButton
application_link={opportunity.application_link}
Expand Down
1 change: 1 addition & 0 deletions src/career/models/Career.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export interface ICareerOpportunity {
featured: boolean;
deadline: string;
deadline_asap: boolean;
rolling_admission: boolean;
employment: IEmployment;
location: ILocation[];
application_link: string;
Expand Down

0 comments on commit 4457a28

Please sign in to comment.