I have a list of objects from which I pass parameters to a state. The links(href) are properly created, but when I change the list, the old hrefs remain instead of generating new values.
<ul>
  <li data-ui-sref-active="active" data-ng-repeat="location in locations track by $index">
    <a data-ui-state="'.map.location'" data-ui-state-params="{ 'descriptor': '{{location.descriptor}}'}">
      {{location.descriptor}}
    </a>
</ul>
<button ng-click="changeList()">change list</button>
and the controller:
var app = angular.module('plunker', ['ui.router'])
  .config(function($stateProvider, $urlRouterProvider) {
    $stateProvider
        // route for the home page
        .state('map', {
            url:'/map',
            templateUrl:'map.html'
        })
        .state('map.location', {
            url:'/location/{descriptor}',
            templateUrl:'map.html'
        })
    $urlRouterProvider.otherwise('/map');
});
app.controller('MainCtrl', function($scope) {
   $scope.locations = [{
     descriptor: "1"
   },{
     descriptor: "2"
   },{
     descriptor: "3"
   },{
     descriptor: "4"
   },{
     descriptor: "5"
   }];
  $scope.changeList = function(){
  $scope.locations = [{
       descriptor: "A"
     },{
       descriptor: "B"
     },{
       descriptor: "C"
     }];
  }
 });
Full code here: http://plnkr.co/edit/s4W3Qa0w37LO7HnwAZbH
 
    