diff --git a/common/app/routes/Jobs/components/List.jsx b/common/app/routes/Jobs/components/List.jsx
index d3070d177f..a01c70b1d4 100644
--- a/common/app/routes/Jobs/components/List.jsx
+++ b/common/app/routes/Jobs/components/List.jsx
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
+import { Link } from 'react-router';
import { PanelGroup, Thumbnail, Panel, Well } from 'react-bootstrap';
import moment from 'moment';
@@ -46,21 +47,23 @@ export default React.createClass({
eventKey={ index }
header={ header }
key={ id }>
-
-
-
- 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 }
+
+
);
});