You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/content/error/ngRepeat/dupes.ngdoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ For example the issue can be triggered by this *invalid* code:
15
15
16
16
To resolve this error either ensure that the items in the collection have unique identity or use the `track by` syntax to specify how to track the association between models and DOM.
17
17
18
-
To resolve the example above can be resolved by using `track by $index`, which will cause the items to be keyed by their position in the array instead of their value:
18
+
The example above can be resolved by using `track by $index`, which will cause the items to be keyed by their position in the array instead of their value:
19
19
20
20
```
21
21
<div ng-repeat="value in [4, 4] track by $index"></div>
0 commit comments