This repository was archived by the owner on Sep 5, 2024. It is now read-only.
  
  
  
  
  
Description
md-chip components with ng-repeat directive are not shown.
Codepen Example based off of the Static Chips demo
In this case, the chips with the ng-repeat directive are not displayed at all:
<md-chips>
     <md-chip>Normal Static Chip</md-chip>
     <!-- Bug: Chips with ng-repeat directive do not display -->
     <md-chip ng-repeat="i in [1, 2, 3]">ng-repeat Chip</md-chip>
</md-chips>