Skip to content
Snippets Groups Projects
Commit fdf75436 authored by Erik Reid's avatar Erik Reid
Browse files

fixed column alignment

parent 755a4e3b
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@
<th scope="col">errors</th>
</tr>
<tr ng-if="show_errors" ng-repeat="description in errors">
<td>{{ description }}</td>
<td colspan="2">{{ description }}</td>
</tr>
</table>
</div>
......@@ -52,8 +52,7 @@
<th scope="col">warnings</th>
</tr>
<tr ng-if="show_warnings" ng-repeat="description in warnings">
<td></td>
<td>{{ description }}</td>
<td colspan="2">{{ description }}</td>
</tr>
</table>
</div>
......@@ -67,7 +66,7 @@
<th scope="col">pending tasks</th>
</tr>
<tr ng-if="show_pending" ng-repeat="description in pending">
<td>{{ description }}</td>
<td colspan="2">{{ description }}</td>
</tr>
</table>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment