Loop when doing cache: false

Hi all!
I am doing

 .state('app.placeslists', {
        url: "/placeslists",
        cache: false,
        views: {
            'menuContent': {
                templateUrl: "templates/placeslists.html",
                controller: 'PlaceslistsCtrl'
            }
        }

and the issue if I am doing cache: false i can see that the page loading in a loop.What can be the issue?

Could you provide a codepen demo? Kind of hard to find the issue without looking at some code.