diff --git a/.eslintrc b/.eslintrc index 8b22609201..5d7667557f 100644 --- a/.eslintrc +++ b/.eslintrc @@ -168,7 +168,6 @@ "no-ternary": 0, "no-trailing-spaces": 1, "no-underscore-dangle": 0, - "no-extra-parens": 2, "one-var": 0, "operator-assignment": 0, "padded-blocks": 0, diff --git a/common/app/routes/Jobs/components/Show.jsx b/common/app/routes/Jobs/components/Show.jsx index 9e46c4ae07..321e00cd02 100644 --- a/common/app/routes/Jobs/components/Show.jsx +++ b/common/app/routes/Jobs/components/Show.jsx @@ -1,6 +1,6 @@ import React, { PropTypes } from 'react'; import { contain } from 'thundercats-react'; -import { Accordion, Thumbnail, Panel, Well } from 'react-bootstrap'; +import { PanelGroup, Thumbnail, Panel, Well } from 'react-bootstrap'; import moment from 'moment'; export default contain( @@ -46,22 +46,24 @@ export default contain( ); return ( - - Position: { position } - Location: { city }, { state } -
- Contact: { email || phone || 'N/A' } -
- Posted On: { moment(postedOn).format('MMMM Do, YYYY') } + + + Position: { position } + Location: { city }, { state } +
+ Contact: { email || phone || 'N/A' } +
+ Posted On: { moment(postedOn).format('MMMM Do, YYYY') } +
+

{ description }

-

{ description }

); }); @@ -70,9 +72,9 @@ export default contain( render() { const { jobs } = this.props; return ( - + { this.renderJobs(jobs) } - + ); } })