Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 61245b7

Browse files
StexxenMarcy Sutton
authored and
Marcy Sutton
committed
Make start and end tag of md-optgroup consistent.
1 parent 6d6c79b commit 61245b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/select/demoOptionGroups/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<md-select ng-model="favoriteTopping" placeholder="Favorite Topping">
55
<md-optgroup label="Meats">
66
<md-option ng-value="topping.name" ng-repeat="topping in toppings | filter: {category: 'meat' }">{{topping.name}}</md-option>
7-
</md-option-group>
7+
</md-optgroup>
88
<md-optgroup label="Veggies">
99
<md-option ng-value="topping.name" ng-repeat="topping in toppings | filter: {category: 'veg' }">{{topping.name}}</md-option>
10-
</md-option-group>
10+
</md-optgroup>
1111
</md-select>
1212
<p class="result">{{ favoriteTopping ? 'Your favorite topping is ' + favoriteTopping : 'Please select a topping'}}</p>
1313
</div>

0 commit comments

Comments
 (0)