Browse Source

Remove subscriber list link from list name

Kailash Nadh 6 years ago
parent
commit
6b29c0ff28
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/my/src/Lists.js

+ 1 - 1
frontend/my/src/Lists.js

@@ -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>
           )