Commit 2263bfe7c9a134946b8f22cc273f48e05b33815c
1 parent
2398385ac1
Exists in
master
url redirect
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/partials/ContactView/ContactView.html
... | ... | @@ -34,7 +34,7 @@ |
34 | 34 | <div class="tab-content customer-table" style="margin:0px"> |
35 | 35 | <div class="tab-pane active" id="companyView"> |
36 | 36 | <table ng-table="displayContactList" class="table table-striped table-condensed" show-filter="true"> |
37 | - <tr ng-repeat="row in $data track by row.id"> | |
37 | + <tr ng-repeat="row in $data track by row.id" style="cursor: pointer;" ui-sref="app.viewContact({id : row.id})"> | |
38 | 38 | <td data-title="'Last Name'" filter="{lastName: 'text'}" sortable="'lastName'"> |
39 | 39 | {{row.lastName}} |
40 | 40 | </td> | ... | ... |