You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by de...@apache.org on 2017/03/15 14:44:53 UTC

[1/2] incubator-trafficcontrol git commit: This closes #367

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master 7e60d5894 -> 7e65ca477


This closes #367


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

Branch: refs/heads/master
Commit: 7e65ca4777864ca2fe41f6b53e8050de8796d1a7
Parents: 8dbfd32
Author: Dewayne Richardson <de...@apache.org>
Authored: Wed Mar 15 08:44:47 2017 -0600
Committer: Dewayne Richardson <de...@apache.org>
Committed: Wed Mar 15 08:44:47 2017 -0600

----------------------------------------------------------------------

----------------------------------------------------------------------



[2/2] incubator-trafficcontrol git commit: name is not a column on the ds table. display_name is however.

Posted by de...@apache.org.
name is not a column on the ds table. display_name is however.


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

Branch: refs/heads/master
Commit: 8dbfd320058291903fbc5023f8764a34386aeede
Parents: 7e60d58
Author: Jeremy Mitchell <mi...@gmail.com>
Authored: Tue Mar 14 15:16:55 2017 -0600
Committer: Dewayne Richardson <de...@apache.org>
Committed: Wed Mar 15 08:44:47 2017 -0600

----------------------------------------------------------------------
 .../app/templates/federation/_listdeliveryservices.js.html.ep      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/8dbfd320/traffic_ops/app/templates/federation/_listdeliveryservices.js.html.ep
----------------------------------------------------------------------
diff --git a/traffic_ops/app/templates/federation/_listdeliveryservices.js.html.ep b/traffic_ops/app/templates/federation/_listdeliveryservices.js.html.ep
index 4f3f936..6747e06 100644
--- a/traffic_ops/app/templates/federation/_listdeliveryservices.js.html.ep
+++ b/traffic_ops/app/templates/federation/_listdeliveryservices.js.html.ep
@@ -15,7 +15,7 @@
 
 function listDeliveryServices(selected_ds_id) {
 	$("#delivery_service").html("<select id=\"dsselect\" name=\"ds_id\"></select>");	
-	$.get("/api/1.2/deliveryservices.json?orderby=name", function(data){
+	$.get("/api/1.2/deliveryservices.json?orderby=display_name", function(data){
 		var response = data['response'];
 		$.each(response, function(idx, val) {
 			if (response[idx].id == selected_ds_id) {