From 7bc720b435206abadb78bc1ff09b97a495da68a7 Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Wed, 18 Jan 2017 10:52:07 -0500 Subject: [PATCH] rectifiy dashboard proj sync count with UI link * The dashboard project sync failure count only includes project syncs that have failed, not that have been canceled. Thus, the link from the dashboard that displays the list of failed project updates should only include the failed ones, not the canceled ones. related to #2827 --- .../client/src/dashboard/counts/dashboard-counts.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/dashboard/counts/dashboard-counts.directive.js b/awx/ui/client/src/dashboard/counts/dashboard-counts.directive.js index 8d26b9d1c6..fc0c8c31dd 100644 --- a/awx/ui/client/src/dashboard/counts/dashboard-counts.directive.js +++ b/awx/ui/client/src/dashboard/counts/dashboard-counts.directive.js @@ -61,7 +61,7 @@ export default label: i18n._("Projects") }, { - url: "/#/projects?project_search=status__in:failed,canceled", + url: "/#/projects?project_search=status__in:failed", number: scope.data.projects.failed, label: i18n._("Project Sync Failures"), isFailureCount: true