tighten up status transitions for relaunch

This commit is contained in:
Jake McDermott
2018-03-29 02:42:24 -04:00
parent 66dcf01088
commit 6c8923d653
4 changed files with 32 additions and 27 deletions

View File

@@ -539,6 +539,7 @@ function AtDetailsController (
vm.toggleLabels = toggleLabels;
$scope.$watch('started', value => { vm.started = getStartDetails(value); });
$scope.$watch('status', value => { vm.status = getStatusDetails(value); });
$scope.$watch('finished', value => { vm.finished = getFinishDetails(value); });
$scope.$on(resource.ws.status, (e, data) => handleSocketEvent(data));
@@ -575,6 +576,7 @@ function atDetails () {
finished: '=',
started: '=',
resource: '=',
status: '=',
},
};
}