Fix board ordering on rename

This commit is contained in:
Julius Haertl
2016-08-24 01:58:54 +02:00
parent 2deffacd98
commit 5388f2af69
8 changed files with 55 additions and 48 deletions

View File

@@ -1,5 +1,5 @@
<div id="boardlist">
<table width="100%">
<!--<table width="100%">
<thead>
<tr>
<td class="cell-board-bullet"></td>
@@ -8,7 +8,7 @@
</tr>
</thead>
<tbody>
<tr data-ng-repeat="b in boardservice.data"
<tr data-ng-repeat="b in boards"
ui-sref="board({boardId: b.id})">
<td>
<span class="board-bullet"
@@ -50,5 +50,5 @@
<td></td>
</tr>
</tbody>
</table>
</table>//-->
</div>