Skip to content

Commit

Permalink
fix(smartTable/editableTable): fix last column arrow
Browse files Browse the repository at this point in the history
Close akveo#57
  • Loading branch information
tibing-old-email committed Jun 21, 2016
1 parent a8db6f1 commit 303d223
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/pages/tables/widgets/editableTable.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<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>
<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 @@ -18,7 +20,7 @@
</tr>
<tfoot>
<tr>
<td colspan="6" class="text-center">
<td colspan="6" class="text-center">
<div st-pagination="" st-items-by-page="12" st-displayed-pages="5"></div>
</td>
</tr>
Expand Down

0 comments on commit 303d223

Please sign in to comment.