SyntaxFix
Write A Post
Hire A Developer
Questions
Instead of ng-options="product as product.label for product in products"> in the select element, you can even use this:
ng-options="product as product.label for product in products">
<option ng-repeat="product in products" value="{{product.label}}">{{product.label}}
which works just fine as well.