Commit 633bbda7a45f3bfabf6e1a4caa45b570b2abcf6b
1 parent
88abaa681d
Exists in
master
aircraft size auto-populate
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/partials/customers/customers.html
... | ... | @@ -469,7 +469,7 @@ |
469 | 469 | <td style="width: 17%"> |
470 | 470 | <select class="form-control" ng-model="aircraftData.size" ng-change="getFuelType(aircraftData.size, $index)"> |
471 | 471 | <option value="" disabled>Select</option> |
472 | - <option ng-repeat="size in aircraftData.aircraftSizeList" value="{{size.aircraftSize.id}}">{{size.aircraftSize.size}}</option> | |
472 | + <option ng-repeat="size in aircraftData.aircraftSizeList" value="{{size.aircraftSize.id}}" ng-selected="aircraftData.size = aircraftData.aircraftSizeList[0].aircraftSize.id">{{size.aircraftSize.size}}</option> | |
473 | 473 | </select> |
474 | 474 | |
475 | 475 | <!-- <select class="form-control" ng-model="aircraftData.sizeId" ng-options="size.aircraftSize.id as size.aircraftSize.size for size in aircraftData.aircraftSizeList"></select> --> | ... | ... |
app/partials/viewCompany/viewCompany.html
... | ... | @@ -776,7 +776,7 @@ |
776 | 776 | <div class="widget-header"> |
777 | 777 | <i class="icon-pencil"></i> |
778 | 778 | <i class="fa fa-tasks" aria-hidden="true"></i> |
779 | - <h3>Add a New Aircraft kd</h3> | |
779 | + <h3>Add a New Aircraft</h3> | |
780 | 780 | <div class="clearfix"></div> |
781 | 781 | </div> |
782 | 782 | <div class="widget-content" style="padding-left: 0; padding-right: 0; border-bottom: 0;"> | ... | ... |