Correct machine details bug

This commit is contained in:
Loic GUEGAN 2016-05-04 16:17:09 +02:00
parent cc6f0008e3
commit b0f5474306
4 changed files with 6 additions and 6 deletions

View file

@ -14,6 +14,7 @@ mainApp.controller('machineDetailsCtrl', ['$scope', 'Compute', '$rootScope', '$t
// When we need to show details of machine
$scope.$on('showMachineDetailsEvent', function (eventName, machine, axioms) {
$scope.machine = machine;
// console.log(machine.flavor)
$scope.axioms = axioms;
$('#machineDetailsModal').modal({backdrop: false, keyboard: true});
});