File tree 1 file changed +3
-1
lines changed
src/shared/components/Gigs/GigDetails
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import iconSkills from 'assets/images/icon-skills-blue.png';
22
22
import iconLabel1 from 'assets/images/l1.png' ;
23
23
import iconLabel2 from 'assets/images/l2.png' ;
24
24
import iconLabel3 from 'assets/images/l3.png' ;
25
+ import SadFace from 'assets/images/sad-face-icon.svg' ;
25
26
26
27
// Cleanup HTML from style tags
27
28
// so it won't affect other parts of the UI
@@ -48,7 +49,8 @@ export default function GigDetails(props) {
48
49
{
49
50
job . error || job . enable_job_application_form !== 1 ? (
50
51
< div styleName = "error" >
51
- < h3 > Gig does not exist.</ h3 >
52
+ { job . error ? < SadFace /> : null }
53
+ < h3 > { job . error ? 'Gig does not exist' : 'This Gig has been Fulfilled' } </ h3 >
52
54
< div styleName = "cta-buttons" >
53
55
< Link to = { config . GIGS_PAGES_PATH } > VIEW OTHER GIGS</ Link >
54
56
</ div >
You can’t perform that action at this time.
0 commit comments