diff --git a/common/app/routes/Jobs/components/GoToPayPal.jsx b/common/app/routes/Jobs/components/GoToPayPal.jsx index 3314b45a82..a29ecbe976 100644 --- a/common/app/routes/Jobs/components/GoToPayPal.jsx +++ b/common/app/routes/Jobs/components/GoToPayPal.jsx @@ -1,20 +1,21 @@ import React, { PropTypes } from 'react'; -import { Col, Panel, Row } from 'react-bootstrap'; +import { Button, Col, Panel, Row } from 'react-bootstrap'; import { contain } from 'thundercats-react'; export default contain( { store: 'JobsStore', actions: 'JobActions', - map({ job: { id } = {} }) { - return { id }; + map({ job: { id, isHighlighted } = {} }) { + return { id, isHighlighted }; } }, React.createClass({ displayName: 'GoToPayPal', propTypes: { - id: PropTypes.string + id: PropTypes.string, + isHighlighted: PropTypes.bool }, render() { @@ -23,44 +24,65 @@ export default contain(