Collection-repeat issue when use progress element

I used collection-repeat in my app which developed in ionic 1.3+. Some code just like below:
< div collection-item-height="244"
collection-item-width="50%"
collection-repeat=“goods in goodsList” >
< progress max=“100” ng-value=“goods.finishRate”></ progress>
</ div>
When the data loaded and the view finished,the progress bar never show its status of value but always showing progress animation. But change collection-repeat to ng-repeat,it works well. Anyone who can tell me how to make the progress works when repeat it with collection-repeat?