1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-17 06:52:27 +01:00

fix change space/machine reservation

This commit is contained in:
Sylvain 2020-10-20 14:53:00 +02:00
parent 8199b53971
commit 24e6736f51
3 changed files with 2 additions and 1 deletions

View File

@ -541,6 +541,7 @@ Application.Controllers.controller('ReserveMachineController', ['$scope', '$stat
$scope.selectedEvent.title = _t('app.logged.machines_reserve.i_shift');
updateEvents($scope.selectedEvent);
}
return true;
};
/**

View File

@ -441,6 +441,7 @@ Application.Controllers.controller('ReserveSpaceController', ['$scope', '$stateP
$scope.selectedEvent.title = _t('app.logged.space_reserve.i_shift');
updateEvents($scope.selectedEvent);
}
return true;
};
/**

View File

@ -28,7 +28,6 @@ Application.Directives.directive('cart', ['$rootScope', '$uibModal', 'dialogs',
onSlotAddedToCart: '=',
onSlotRemovedFromCart: '=',
onSlotStartToModify: '=',
onSlotModifyDestination: '=',
onSlotModifySuccess: '=',
onSlotModifyCancel: '=',
onSlotModifyUnselect: '=',