Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
haneslinger committed Jan 29, 2025
1 parent 5006a17 commit 2cab10f
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,14 +313,14 @@ angular.module('SEED.controller.inventory_group_detail_meters', [])
$scope.refresh_readings = () => {
spinner_utility.show();
inventory_group_service.get_meter_usage($stateParams.group_id, $scope.interval.selected)
.then((usage) => {
// update the base data and reset filters
property_meter_usage = usage;
.then((usage) => {
// update the base data and reset filters
property_meter_usage = usage;

resetSelections();
$scope.applyFilters();
spinner_utility.hide();
});
resetSelections();
$scope.applyFilters();
spinner_utility.hide();
});
};

$scope.open_group_meter_create_modal = () => {
Expand Down

0 comments on commit 2cab10f

Please sign in to comment.