Ignore:
Timestamp:
01/15/21 03:57:59 (3 years ago)
Author:
Vzdra <vladko.zdravkovski@…>
Branches:
master
Children:
ed3f5c4
Parents:
21175ba
Message:

groundwork for job edit

Location:
client_app/src/components/work
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • client_app/src/components/work/company_jobs.js

    r21175ba r4302312  
    1414                    {props.userProfile.jobs.map(item =>{
    1515                        return <Jobs
    16                             title={item.title}
    17                             description={item.description}
    18                             accountName={item.accountName}
    19                             accountEmail={item.accountEmail}
    20                             skills={item.skillsRequired}
    21                             type={props.userProfile.type}
     16                            item={item}
    2217                        />
    2318                    })}
  • client_app/src/components/work/team_jobs.js

    r21175ba r4302312  
    1414                    {props.userProfile.jobs.map(item =>{
    1515                        return <Jobs
    16                             title={item.title}
    17                             description={item.description}
    18                             accountName={item.accountName}
    19                             accountEmail={item.accountEmail}
    20                             skills={item.skillsRequired}
    21                             type={props.userProfile.type}
     16                            item={item}
    2217                        />
    2318                    })}
  • client_app/src/components/work/user_jobs.js

    r21175ba r4302312  
    1313                    {props.userProfile.jobs.map(item =>{
    1414                        return <Jobs
    15                             title={item.title}
    16                             description={item.description}
    17                             accountName={item.accountName}
    18                             accountEmail={item.accountEmail}
    19                             skills={item.skillsRequired}
    20                             type={props.userProfile.type}
     15                            item={item}
    2116                        />
    2217                    })}
Note: See TracChangeset for help on using the changeset viewer.