fergiemcdowall / norch-angular-app

A basic Norch-powered angular app. Use as an example or starting point.
MIT License
2 stars 0 forks source link

Removing chance of duplicate keys in ng-repeat #17

Open eklem opened 8 years ago

eklem commented 8 years ago

To prevent duplicate keys in ng-repeat you should add a little something to the ng-repeats in the html template. According to https://docs.angularjs.org/error/ngRepeat/dupes From:

<div ng-repeat="facetGroup in searchresult.facets">

to

<div ng-repeat="facetGroup in searchresult.facets track by $index">
eklem commented 8 years ago

This PR will fix it: https://github.com/fergiemcdowall/norch-angular-app/pull/18

eklem commented 8 years ago

Need a new PR.