diff --git a/components/Assessment/applicantScore.js b/components/Assessment/applicantScore.js index 6aba9d0a..7b7c1f6a 100644 --- a/components/Assessment/applicantScore.js +++ b/components/Assessment/applicantScore.js @@ -115,6 +115,18 @@ export default function ApplicantScore(props) { score={score.ResponseTwoScore} handleClick={handleClick} /> + + {hasScore && ( diff --git a/components/Evaluator/ApplicantResponse.js b/components/Evaluator/ApplicantResponse.js index d90707c0..b4a4d4f3 100644 --- a/components/Evaluator/ApplicantResponse.js +++ b/components/Evaluator/ApplicantResponse.js @@ -99,28 +99,28 @@ export default function ApplicantResponse({ shouldDisplay, hacker }) { {/* */} - {hacker?.skills?.longAnswers3 && ( - - )} - - {hacker?.skills?.longAnswers4 && ( - - )} + {/* {hacker?.skills?.longAnswers3 && ( */} + + {/* )} */} + + {/* {hacker?.skills?.longAnswers4 && ( */} + + {/* )} */} diff --git a/components/Evaluator/Scoring.js b/components/Evaluator/Scoring.js index 8789afb0..73034951 100644 --- a/components/Evaluator/Scoring.js +++ b/components/Evaluator/Scoring.js @@ -118,6 +118,9 @@ export default function Scoring({ shouldDisplay, applicant }) { case SCORING.ESSAY3.label: field = 'ResponseThreeScore' break + case SCORING.ESSAY4.label: + field = 'ResponseFourScore' + break default: break } @@ -236,15 +239,24 @@ export default function Scoring({ shouldDisplay, applicant }) { maxScore={SCORING.ESSAY2} hasMinusOne /> - {applicant?.skills?.longAnswers3 && ( - - )} + {/* {applicant?.skills?.longAnswers3 && ( */} + + {/* )} */} + {/* {applicant?.skills?.longAnswers4 && ( */} + + {/* )} */} {/* {!applicant?.skills?.hackathonsAttended && ( )} */} diff --git a/constants.js b/constants.js index d0fef9a2..7daad066 100644 --- a/constants.js +++ b/constants.js @@ -183,12 +183,12 @@ export const SCORING = { RESUME: { label: 'Resume', value: 6, - weight: 1, + weight: 0.5, }, NUM_EXP: { label: 'Number of Experiences', value: 5, - weight: 0, + weight: 0.6, }, ESSAY1: { label: 'Long Answer 1', @@ -202,6 +202,11 @@ export const SCORING = { }, ESSAY3: { label: 'Long Answer 3', + value: 6, + weight: 1, + }, + ESSAY4: { + label: 'Long Answer 4', value: 1, weight: 1, }, diff --git a/utility/utilities.js b/utility/utilities.js index 8d54d12e..de5fdd63 100644 --- a/utility/utilities.js +++ b/utility/utilities.js @@ -33,6 +33,9 @@ export const calculateTotalScore = hackerScore => { case 'ResponseThreeScore': label = SCORING.ESSAY3.label break + case 'ResponseFourScore': + label = SCORING.ESSAY4.label + break default: break }