Skip to content

Commit

Permalink
Remove subscriber list link from list name
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Mar 28, 2019
1 parent 178604d commit 6b29c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/my/src/Lists.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class Lists extends React.PureComponent {
const out = []
out.push(
<div className="name" key={`name-${record.id}`}>
<Link to={`/subscribers/lists/${record.id}`}>{text}</Link>
<a role="button" onClick={() => this.handleShowEditForm(record)}>{text}</a>
</div>
)

Expand Down

0 comments on commit 6b29c0f

Please sign in to comment.