Merge pull request #1984 from marshmalien/fix/1847-dashboard-graph-dropdown

Fix dashboard graph VIEW dropdown filter
This commit is contained in:
Marliana Lara
2018-05-31 14:57:38 -04:00
committed by GitHub

View File

@@ -30,6 +30,7 @@ function JobStatusGraph($window, adjustGraphSize, templateUrl, i18n, moment, gra
scope.period="month";
scope.jobType="all";
scope.status="both";
scope.$watch('data', function(value) {
if (value) {
@@ -43,7 +44,7 @@ function JobStatusGraph($window, adjustGraphSize, templateUrl, i18n, moment, gra
scope.data = data;
scope.period = period;
scope.jobType = jobType;
scope.status = status;
scope.status = Object.is(status, undefined) ? scope.status : status;
});
}