File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,10 @@ 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
75
{ opportunity . rolling_admission && (
76
76
< p >
77
- < strong > Fortløpende opptak: Ja </ strong >
77
+ < strong > Fortløpende opptak</ strong >
78
78
</ p >
79
79
) }
80
80
</ div >
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ export interface ICareerOpportunity {
10
10
end : string ;
11
11
featured : boolean ;
12
12
deadline : string ;
13
- deadline_asap : boolean ;
14
13
rolling_admission : boolean ;
15
14
employment : IEmployment ;
16
15
location : ILocation [ ] ;
You can’t perform that action at this time.
0 commit comments