We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f4b03 commit b7fdaabCopy full SHA for b7fdaab
src/career/components/JobDetails.tsx
@@ -71,7 +71,7 @@ const JobDetails: FC<IProps> = ({ opportunity }) => (
71
<h3>Nøkkelinformasjon</h3>
72
<p>Type: {opportunity.employment.name}</p>
73
<p>Sted: {formatLocations(opportunity.location.map((loc) => loc.name))}</p>
74
- {opportunity.deadline && <p>Frist: {formatDeadline(opportunity.deadline)}</p>}
+ <p>Frist: {opportunity.deadline ? formatDeadline(opportunity.deadline) : 'snarest'}</p>
75
{opportunity.rolling_admission && (
76
<p>
77
<strong>Søknader vurderes fortløpende</strong>
0 commit comments