You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by da...@apache.org on 2017/04/12 21:08:38 UTC

[3/4] incubator-trafficcontrol git commit: filters ds by profile

filters ds by profile


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/89b0b649
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/89b0b649
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/89b0b649

Branch: refs/heads/master
Commit: 89b0b649749a04dfc7ea1f90504ca7f3d1977a77
Parents: a426296
Author: Jeremy Mitchell <mi...@gmail.com>
Authored: Mon Apr 10 20:54:04 2017 -0600
Committer: Dan Kirkwood <da...@gmail.com>
Committed: Wed Apr 12 15:07:35 2017 -0600

----------------------------------------------------------------------
 .../src/modules/private/admin/profiles/deliveryServices/index.js   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/89b0b649/traffic_ops/experimental/ui/app/src/modules/private/admin/profiles/deliveryServices/index.js
----------------------------------------------------------------------
diff --git a/traffic_ops/experimental/ui/app/src/modules/private/admin/profiles/deliveryServices/index.js b/traffic_ops/experimental/ui/app/src/modules/private/admin/profiles/deliveryServices/index.js
index 1a6c4a0..dfe8aee 100644
--- a/traffic_ops/experimental/ui/app/src/modules/private/admin/profiles/deliveryServices/index.js
+++ b/traffic_ops/experimental/ui/app/src/modules/private/admin/profiles/deliveryServices/index.js
@@ -31,7 +31,7 @@ module.exports = angular.module('trafficOps.private.admin.profiles.deliveryServi
 								return profileService.getProfile($stateParams.profileId);
 							},
 							deliveryServices: function($stateParams, deliveryServiceService) {
-								return deliveryServiceService.getDeliveryServices({ profileId: $stateParams.profileId });
+								return deliveryServiceService.getDeliveryServices({ profile: $stateParams.profileId });
 							}
 						}
 					}