update jobs model and jobs seed

This commit is contained in:
Berkeley Martinez
2015-07-25 21:59:52 -07:00
parent 4792485ac4
commit f547ce32f7
3 changed files with 27 additions and 10 deletions

View File

@@ -14,7 +14,7 @@ export default contain(
renderJobs(jobs =[]) {
return jobs.map((
{ id, company, position, description, logoUrl },
{ id, company, position, description, logo },
index
) => {
const header = (
@@ -33,8 +33,9 @@ export default contain(
eventKey={ index }
header={ header }
key={ id }>
<Thumbnail alt='171x180' src={ logoUrl } />
<Thumbnail alt='171x180' src={ logo } />
<p>{ description }</p>
</Panel>
);
});