#292, when clicking on row in sketch list, navigate to sketch

This commit is contained in:
Cassie Tarakajian 2017-02-17 17:29:36 -05:00
parent 38a5d6e100
commit f06ac10f9a
2 changed files with 6 additions and 1 deletions

View File

@ -47,7 +47,11 @@ class SketchList extends React.Component {
</thead>
<tbody>
{this.props.sketches.map(sketch =>
<tr className="sketches-table__row visibility-toggle" key={sketch.id}>
<tr
className="sketches-table__row visibility-toggle"
key={sketch.id}
onClick={() => browserHistory.push(`/${username}/sketches/${sketch._id}`)}
>
<td className="sketch-list__trash-column">
{(() => { // eslint-disable-line
if (this.props.username === this.props.user.username || this.props.username === undefined) {

View File

@ -40,6 +40,7 @@
margin: #{10 / $base-font-size}rem;
height: #{72 / $base-font-size}rem;
font-size: #{16 / $base-font-size}rem;
cursor: pointer;
}
.sketches-table__row:nth-child(odd) {