Add missing $scope.$apply in the build logs view

Without this, the logs appear to never load, until such time as any other digest cycle comes along

Fixes #1886
This commit is contained in:
Joseph Schorr 2016-09-29 16:23:11 +02:00
parent 9def2cf055
commit 3476829139

View file

@ -117,15 +117,19 @@ angular.module('quay').directive('buildLogsView', function () {
$.ajax({ $.ajax({
url: logsUrl, url: logsUrl,
}).done(function(r) { }).done(function(r) {
handleLogsData(r, callback); $scope.$apply(function() {
handleLogsData(r, callback);
});
}).error(function(xhr) { }).error(function(xhr) {
if (xhr.status == 0) { $scope.$apply(function() {
UtilService.isAdBlockEnabled(function(result) { if (xhr.status == 0) {
$scope.loadError = result ? 'blocked': 'request-failed'; UtilService.isAdBlockEnabled(function(result) {
}); $scope.loadError = result ? 'blocked': 'request-failed';
} else { });
$scope.loadError = 'request-failed'; } else {
} $scope.loadError = 'request-failed';
}
});
}); });
return; return;