mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 09:27:36 -02:30
Fix dashboard graph status dropdown value
This commit is contained in:
@@ -30,6 +30,7 @@ function JobStatusGraph($window, adjustGraphSize, templateUrl, i18n, moment, gra
|
|||||||
|
|
||||||
scope.period="month";
|
scope.period="month";
|
||||||
scope.jobType="all";
|
scope.jobType="all";
|
||||||
|
scope.status="both";
|
||||||
|
|
||||||
scope.$watch('data', function(value) {
|
scope.$watch('data', function(value) {
|
||||||
if (value) {
|
if (value) {
|
||||||
@@ -43,7 +44,7 @@ function JobStatusGraph($window, adjustGraphSize, templateUrl, i18n, moment, gra
|
|||||||
scope.data = data;
|
scope.data = data;
|
||||||
scope.period = period;
|
scope.period = period;
|
||||||
scope.jobType = jobType;
|
scope.jobType = jobType;
|
||||||
scope.status = status;
|
scope.status = Object.is(status, undefined) ? scope.status : status;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user