Hi,
Today i upgraded the angularjs version from 1.4.3 to 1.4.5, as well as ionic to 1.1.0.
Now the issue is, the items of the list are not getting displayed because of upgrade.
The data is being fetched successfully from the server and i can see size of the list which is printed using the console.log.
if i remove filter and refresh the page, the content are displayed.
What could be the issue in the upgrade. Please help me out.
<ion-list>
<ion-item collection-repeat="item in items | filter:search" data-ng-click="onClickItem(item)">
<div class="row">
<p class="col col-67">{{item.fullName}}</p>
<p class="col">{{item.finalBalance}}</p>
</div>
</ion-item>
Thanks