Skip to content

Commit

Permalink
Show 'snarest' if no deadline
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikskog committed Oct 4, 2024
1 parent 75f4b03 commit b7fdaab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/career/components/JobDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const JobDetails: FC<IProps> = ({ opportunity }) => (
<h3>Nøkkelinformasjon</h3>
<p>Type: {opportunity.employment.name}</p>
<p>Sted: {formatLocations(opportunity.location.map((loc) => loc.name))}</p>
{opportunity.deadline && <p>Frist: {formatDeadline(opportunity.deadline)}</p>}
<p>Frist: {opportunity.deadline ? formatDeadline(opportunity.deadline) : 'snarest'}</p>
{opportunity.rolling_admission && (
<p>
<strong>Søknader vurderes fortløpende</strong>
Expand Down

0 comments on commit b7fdaab

Please sign in to comment.