From caeefa4f7e9d74a62331a7ffc8d3303db7b68e2f Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Wed, 17 Jun 2015 17:22:29 -0400 Subject: [PATCH] [system_tracking] Monkey-patching module objects == bad idea --- awx/ui/static/js/system-tracking/system-tracking.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/system-tracking/system-tracking.controller.js b/awx/ui/static/js/system-tracking/system-tracking.controller.js index 75b1c6a004..ad169868c0 100644 --- a/awx/ui/static/js/system-tracking/system-tracking.controller.js +++ b/awx/ui/static/js/system-tracking/system-tracking.controller.js @@ -35,7 +35,7 @@ function controller($rootScope, $scope.factModulePickersLabelRight = "To latest facts collected on or before"; } - $scope.modules = moduleOptions; + $scope.modules = _.clone(moduleOptions, true); var leftSearchRange = searchDateRange(); var rightSearchRange = searchDateRange();