Skip to content
Snippets Groups Projects
Commit ef94cb39 authored by Michael Tobis's avatar Michael Tobis
Browse files

bug fix: job description not showing in popup

parent 06abb892
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ export default function PostPopUp({ post }) {
const findKeyWords = () => {
let job_description = post.job_description;
if (!post.job_highlights.Qualifications) return;
if (!post.job_highlights.Qualifications) return job_description;
for (const keyphrase of post.job_highlights.Qualifications) {
const start = job_description.indexOf(keyphrase);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment