From b967caedaaa4610e894c3072a9a785e5c67a0b0b Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Wed, 2 Mar 2016 10:04:23 -0500 Subject: [PATCH] Strip the extra query params when the user uses the activity stream dropdown nav. --- .../streamDropdownNav/stream-dropdown-nav.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/activity-stream/streamDropdownNav/stream-dropdown-nav.directive.js b/awx/ui/client/src/activity-stream/streamDropdownNav/stream-dropdown-nav.directive.js index b7c71e338a..2fde904199 100644 --- a/awx/ui/client/src/activity-stream/streamDropdownNav/stream-dropdown-nav.directive.js +++ b/awx/ui/client/src/activity-stream/streamDropdownNav/stream-dropdown-nav.directive.js @@ -42,7 +42,7 @@ export default ['templateUrl', function(templateUrl) { } else { // Attach the taget to the query parameters - $state.go('activityStream', {target: $scope.streamTarget}); + $state.go('activityStream', {target: $scope.streamTarget}, {inherit: false}); } }