Skip to content
Snippets Groups Projects
Commit 364da5c5 authored by cmaeder's avatar cmaeder
Browse files

use properly ng-repeat on tr-tag to fix #1

parent 42777153
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,8 @@
<input class="btn-primary" type="submit" value="search"/>
</form>
<p>results: {{results.length}}</p>
<table ng-repeat="res in results track by $index" col-resizeable>
<tr>
<table>
<tr ng-repeat="res in results track by $index">
<td ng-if="columns.id">{{res.id}}</td>
<td ng-if="columns.errLevel">{{res.errLevel}}</td>
<td ng-if="columns.fileName">{{res.fileName}}</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment