File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,12 @@ const JobDetails: FC<IProps> = ({ opportunity }) => (
71
71
< h3 > Nøkkelinformasjon</ h3 >
72
72
< p > Type: { opportunity . employment . name } </ p >
73
73
< p > Sted: { formatLocations ( opportunity . location . map ( ( loc ) => loc . name ) ) } </ p >
74
- < p > Frist: { opportunity . deadline_asap ? 'Snarest' : formatDeadline ( opportunity . deadline ) } </ p >
74
+ { opportunity . deadline && < p > Frist: { formatDeadline ( opportunity . deadline ) } </ p > }
75
+ { opportunity . rolling_admission && (
76
+ < p >
77
+ < strong > Søknader vurderes fortløpende</ strong >
78
+ </ p >
79
+ ) }
75
80
</ div >
76
81
< ApplyButton
77
82
application_link = { opportunity . application_link }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export interface ICareerOpportunity {
10
10
end : string ;
11
11
featured : boolean ;
12
12
deadline : string ;
13
- deadline_asap : boolean ;
13
+ rolling_admission : boolean ;
14
14
employment : IEmployment ;
15
15
location : ILocation [ ] ;
16
16
application_link : string ;
You can’t perform that action at this time.
0 commit comments