From 8b39d30a7ac30601024ef6e3425c3a1396ff7fcd Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Thu, 9 Feb 2017 12:52:36 -0500 Subject: [PATCH] fix current update cloud icon click --- awx/ui/client/src/helpers/Groups.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/helpers/Groups.js b/awx/ui/client/src/helpers/Groups.js index bbc8007a06..8e7dcfc7ad 100644 --- a/awx/ui/client/src/helpers/Groups.js +++ b/awx/ui/client/src/helpers/Groups.js @@ -78,7 +78,7 @@ angular.module('GroupsHelper', [ 'RestServices', 'Utilities', listGenerator.name scope.removeSourceReady = scope.$on('SourceReady', function(e, source) { // Get the ID from the correct summary field - var update_id = (source.current_update) ? source.summary_fields.current_update.id : source.summary_fields.last_update.id; + var update_id = (source.summary_fields.current_update) ? source.summary_fields.current_update.id : source.summary_fields.last_update.id; $state.go('inventorySyncStdout', {id: update_id});