diff --git a/awx/ui/client/src/inventories-hosts/inventories/inventories.route.js b/awx/ui/client/src/inventories-hosts/inventories/inventories.route.js index fc2888a2eb..2fb8425009 100644 --- a/awx/ui/client/src/inventories-hosts/inventories/inventories.route.js +++ b/awx/ui/client/src/inventories-hosts/inventories/inventories.route.js @@ -12,7 +12,7 @@ export default { activityStreamTarget: 'inventory', socket: { "groups": { - "inventories": ["status_changed"] + inventories: ["status_changed"] } } }, diff --git a/awx/ui/client/src/inventories-hosts/inventories/list/inventory-list.controller.js b/awx/ui/client/src/inventories-hosts/inventories/list/inventory-list.controller.js index a63fe5731f..6b5eb6b040 100644 --- a/awx/ui/client/src/inventories-hosts/inventories/list/inventory-list.controller.js +++ b/awx/ui/client/src/inventories-hosts/inventories/list/inventory-list.controller.js @@ -164,7 +164,7 @@ function InventoriesList($scope, } if (parseInt($state.params.inventory_id) === data.inventory_id || parseInt($state.params.smartinventory_id) === data.inventory_id) { - $state.go("^", reloadListStateParams, {reload: true}); + $state.go("inventories", reloadListStateParams, {reload: true}); } else { $state.go('.', reloadListStateParams, {reload: true}); } diff --git a/awx/ui/client/src/inventories-hosts/inventories/related/sources/list/sources-list.route.js b/awx/ui/client/src/inventories-hosts/inventories/related/sources/list/sources-list.route.js index c9d9882581..0bc50c9e75 100644 --- a/awx/ui/client/src/inventories-hosts/inventories/related/sources/list/sources-list.route.js +++ b/awx/ui/client/src/inventories-hosts/inventories/related/sources/list/sources-list.route.js @@ -17,7 +17,8 @@ export default { data: { socket: { groups: { - jobs: ["status_changed"] + jobs: ["status_changed"], + inventories: ["status_changed"] } } },