Skip to content

Commit 503c296

Browse files
committed
Fix for latest AM update breaking older select
1 parent ce1866e commit 503c296

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

examples/material-example.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,15 @@ <h3>Model</h3>
122122
<div layout="column" flex>
123123
<h3>Select Example</h3>
124124
<div class="form-group">
125-
<md-select id="selectTest" ng-model="selectedTest" placeholder="{{form.placeholder}}">
126-
<md-option ng-value="obj" ng-repeat="obj in tests">{{ obj.name }}</md-option>
127-
</md-select>
128-
<span class="btw">
125+
<md-input-container>
126+
<md-select id="selectTest" ng-model="selectedTest">
127+
<md-option ng-value="obj" ng-repeat="obj in tests">{{::obj.name}}</md-option>
128+
</md-select>
129+
</md-input-container>
130+
<div class="btw">
129131
By the way, there is also an example of
130132
<a href="custom-validators.html">custom (async) validators</a> example.
131-
</span>
133+
</div>
132134
</div>
133135
<h3>Form</h3>
134136
<div ui-ace="{ theme: 'monokai',mode:'json'}"

0 commit comments

Comments
 (0)