This commit is contained in:
Cassie Tarakajian 2016-11-02 17:28:06 -04:00
parent 588668886d
commit 3a8e67d484

View file

@ -38,6 +38,11 @@ class SketchList extends React.Component {
{this.props.sketches.map(sketch =>
<tr className="sketches-table__row visibility-toggle" key={sketch.id}>
<td>
{(() => { // eslint-disable-line
console.log(this.props.username);
console.log(this.props.user.username);
if (this.props.username === this.props.user.username || this.props.username === undefined) {
return (
<button
className="sketch-list__trash-button"
onClick={() => {
@ -48,6 +53,9 @@ class SketchList extends React.Component {
>
<InlineSVG src={trashCan} alt="Delete Project" />
</button>
);
}
})()}
</td>
<td scope="row"><Link to={`/projects/${sketch._id}`}>{sketch.name}</Link></td>
<td>{moment(sketch.createdAt).format('MMM D, YYYY h:mm:ss A')}</td>