Commit e5f3b4dd368d8e2b3a8c56219203d7573a78b141

Authored by Kuldeep Arora
1 parent e2ab11a77a
Exists in master

minor

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
app/views/updateFBODept/updateFBODept.html
... ... @@ -38,7 +38,7 @@
38 38 <form role="form">
39 39 <div class="col-sm-6 b-r">
40 40 <!-- <div class="form-group"><label>Company Name</label> <input type="text" placeholder="Company Name" ng-model="user.companyName" class="form-control"></div> -->
41   - <div class="form-group"><label>Email Username</label> <input type="email" placeholder="Email Username" ng-model="user.email" class="form-control" ng-blur="checkUsername()"></div>
  41 + <div class="form-group"><label>Email Username</label> <input type="email" placeholder="Email Username" ng-model="user.email" class="form-control" ng-change="checkUsername()"></div>
42 42 <div class="form-group"><label>First Name</label> <input type="text" placeholder="First Name" ng-model="user.firstName" class="form-control"></div>
43 43 <div class="form-group"><label>Last Name</label> <input type="text" placeholder="Last Name" ng-model="user.lastName" class="form-control"></div>
44 44 <!-- <div>
... ... @@ -114,7 +114,7 @@
114 114 </td>
115 115 <td style="width: 30%">
116 116 <select class="form-control" ng-model="aircraft.make" ng-change="getModal()">
117   - <option ng-repeat="make in aircraftMakeList">{{make}}</option>
  117 + <option ng-repeat="make in aircraftMakeList | orderBy">{{make}}</option>
118 118 </select>
119 119 </td>
120 120 <td style="width: 30%">
... ... @@ -212,7 +212,7 @@
212 212 </td>
213 213 <td style="width: 30%">
214 214 <select class="form-control" ng-model="aircraft.make" ng-change="getModal()">
215   - <option ng-repeat="make in aircraftMakeList">{{make}}</option>
  215 + <option ng-repeat="make in aircraftMakeList | orderBy">{{make}}</option>
216 216 </select>
217 217 </td>
218 218 <td style="width: 30%">
... ...