Skip to content

Commit b7fdaab

Browse files
committed
Show 'snarest' if no deadline
1 parent 75f4b03 commit b7fdaab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/career/components/JobDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const JobDetails: FC<IProps> = ({ opportunity }) => (
7171
<h3>Nøkkelinformasjon</h3>
7272
<p>Type: {opportunity.employment.name}</p>
7373
<p>Sted: {formatLocations(opportunity.location.map((loc) => loc.name))}</p>
74-
{opportunity.deadline && <p>Frist: {formatDeadline(opportunity.deadline)}</p>}
74+
<p>Frist: {opportunity.deadline ? formatDeadline(opportunity.deadline) : 'snarest'}</p>
7575
{opportunity.rolling_admission && (
7676
<p>
7777
<strong>Søknader vurderes fortløpende</strong>

0 commit comments

Comments
 (0)