Commit 0a364e561ce142bababd90c45dd3528432fdfe3a

Authored by Kuldeep Arora
1 parent 039002959d
Exists in master

minor

app/partials/customers/customers.controller.js
... ... @@ -284,6 +284,7 @@ function customersController($scope, $rootScope, $uibModal, $filter, $http, $sta
284 284 CustomersService.getAircraftSize($scope.aircraft.make, model).then(function(result) {
285 285 $scope.showLoader = false;
286 286 $scope.aircraftDetails[index].aircraftSizeList = result;
  287 + $scope.getFuelType($scope.aircraftDetails[index].aircraftSizeList[0].aircraftSize.id,index);
287 288  
288 289 })
289 290 }
... ...
app/partials/viewCompany/viewCompany.controller.js
... ... @@ -360,6 +360,7 @@ angular.module('acufuel')
360 360 CustomersService.getAircraftSize($scope.aircraft.make, model).then(function(result) {
361 361 $scope.showLoader = false;
362 362 $scope.aircraftDetails[index].aircraftSizeList = result;
  363 + $scope.getFuelType($scope.aircraftDetails[index].aircraftSizeList[0].aircraftSize.id,index);
363 364  
364 365 })
365 366 }
... ...
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</h3>
  779 + <h3>Add a New Aircraft kd</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;">
... ...