I have an angular repeater bound to an array. When I push a new item, the UI updates as expected, but for subsequent pushes, the array updates but the UI doesn\'t change. I alre
It's because you are pussing the same value again and again which creates duplicate elements, try using track by index
track by index
<li data-ng-repeat="item in values track by $index">
working fiddle