Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 7f59ff7

Browse files
author
dengjun
committed
ci: fixing128
1 parent 04edc57 commit 7f59ff7

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

src/containers/MyGigs/modals/UpdateGigProfile/index.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,16 @@ const UpdateGigProfile = ({
216216
</div>
217217
</div>
218218
<div styleName="details">
219+
{profile && profile.existingResume && (
220+
<div styleName="resume-details">
221+
Please upload your resume/CV. Double-check that all of your tech
222+
skills are listed in your resume/CV and add them to the tech
223+
skills section below.
224+
<a href={profile.existingResume.file_link}>
225+
{profile.existingResume.filename}
226+
</a>
227+
</div>
228+
)}
219229
<div styleName="resume">
220230
<FilePicker
221231
label="Drag & drop your resume or CV here - Please Omit Contact Information"

src/containers/MyGigs/modals/UpdateGigProfile/styles.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,13 @@
118118
.details {
119119
display: flex;
120120
flex-wrap: wrap;
121+
.resume-details {
122+
font-size: 14px;
123+
& > a {
124+
color: blue;
125+
text-decoration: underline;
126+
}
127+
}
121128

122129
.resume {
123130
align-self: flex-start;

src/services/myGigs.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ async function getProfile() {
114114
country: profile.country,
115115
phone: profile.phone,
116116
file: null,
117+
existingResume: profile.resume,
117118
hasProfile: profile.hasProfile,
118119
status: profile.availability
119120
? GIG_STATUS.AVAILABLE

0 commit comments

Comments
 (0)