Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Commit

Permalink
Fix issue dalen#45
Browse files Browse the repository at this point in the history
Fixes "[ngRepeat:dupes] Duplicates in a repeater are not allowed"
error in the node detail tab.
  • Loading branch information
kirillk77 committed Feb 25, 2016
1 parent 4b49bb7 commit 4d675d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/controllers/nodedetail/nodedetail.tpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h3>{{nodeDetail.node}}</h3>
</tr></thead>
<tbody>
<tr ng-repeat="fact in nodeDetail.importantFacts()">
<td><span ng-repeat="factCompontent in fact.path">{{factCompontent}}<span class="text-muted" ng-if="!$last"> / </span></span></td>
<td><span ng-repeat="factCompontent in fact.path track by $index">{{factCompontent}}<span class="text-muted" ng-if="!$last"> / </span></span></td>
<td>{{fact.value}}</td>
</tr>
</tbody>
Expand All @@ -61,7 +61,7 @@ <h3>{{nodeDetail.node}}</h3>
</tr></thead>
<tbody>
<tr ng-repeat="fact in nodeDetail.facts">
<td><span ng-repeat="factCompontent in fact.path">{{factCompontent}}<span class="text-muted" ng-if="!$last"> / </span></span></td>
<td><span ng-repeat="factCompontent in fact.path track by $index">{{factCompontent}}<span class="text-muted" ng-if="!$last"> / </span></span></td>
<td>{{fact.value}}</td>
</tr>
</tbody>
Expand Down

0 comments on commit 4d675d1

Please sign in to comment.