Log/error fields changed name

This commit is contained in:
Jakob Borg
2015-10-12 14:18:40 +09:00
parent baf5191433
commit 240e7b0835
3 changed files with 11 additions and 7 deletions

View File

@@ -1047,12 +1047,12 @@ angular.module('syncthing.core')
return [];
}
return $scope.errors.filter(function (e) {
return e.time > $scope.seenError;
return e.when > $scope.seenError;
});
};
$scope.clearErrors = function () {
$scope.seenError = $scope.errors[$scope.errors.length - 1].time;
$scope.seenError = $scope.errors[$scope.errors.length - 1].when;
$http.post(urlbase + '/system/error/clear');
};