diff --git a/common/app/routes/Jobs/components/Show.jsx b/common/app/routes/Jobs/components/Show.jsx
index 5d955b3f02..209917cff7 100644
--- a/common/app/routes/Jobs/components/Show.jsx
+++ b/common/app/routes/Jobs/components/Show.jsx
@@ -2,6 +2,11 @@ import React, { PropTypes } from 'react';
import { Thumbnail, Panel, Well } from 'react-bootstrap';
import moment from 'moment';
+const thumbnailStyle = {
+ backgroundColor: 'white',
+ maxHeight: '100px',
+ maxWidth: '100px'
+};
export default React.createClass({
displayName: 'ShowJob',
propTypes: {
@@ -22,28 +27,33 @@ export default React.createClass({
},
render() {
- const { job } = this.props.job;
+ const { job } = this.props;
+ const {
+ logo,
+ position,
+ city,
+ state,
+ email,
+ phone,
+ postedOn,
+ description
+ } = job;
return (
-
-
-
-
- Position: { position }
- Location: { city }, { state }
-
- Contact: { email || phone || 'N/A' }
-
- Posted On: { moment(postedOn).format('MMMM Do, YYYY') }
-
- { description }
-
-
+
+
+
+ Position: { position }
+ Location: { city }, { state }
+
+ Contact: { email || phone || 'N/A' }
+
+ Posted On: { moment(postedOn).format('MMMM Do, YYYY') }
+
+ { description }
+
);
}
});