Skip to content

Commit

Permalink
fix(smartTable/editableTable): fix last column arrow
Browse files Browse the repository at this point in the history
Close #57
  • Loading branch information
tibing-old-email authored and lugovsky committed Jun 24, 2016
1 parent f53c360 commit 4014e7d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/pages/tables/widgets/editableTable.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
<div class="horizontal-scroll">
<table class="table table-hover" st-table="editableTableData">
<tr class="sortable header-row">
<thead>
<tr class="sortable">
<th class="table-id" st-sort="id" st-sort-default="true">#</th>
<th st-sort="firstName">First Name</th>
<th st-sort="lastName">Last Name</th>
<th st-sort="username">Username</th>
<th st-sort="email">Email</th>
<th st-sort="age">Age</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in editableTableData" class="editable-tr-wrap">
<td class="table-id">{{item.id}}</td>
<td><span editable-text="item.firstName" blur="cancel">{{item.firstName}}</span></td>
Expand All @@ -16,6 +19,7 @@
<td><a class="email-link" ng-href="mailto:{{item.email}}">{{item.email}}</a></td>
<td><span editable-text="item.age" blur="cancel">{{item.age}}</span></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="6" class="text-center">
Expand Down

0 comments on commit 4014e7d

Please sign in to comment.