diff --git a/ui/jsp/network.jsp b/ui/jsp/network.jsp index 499523f9633..3d495533f26 100644 --- a/ui/jsp/network.jsp +++ b/ui/jsp/network.jsp @@ -439,23 +439,13 @@
- URL:
+ IP:
- -
-
-
- Type:
-
-
-
-
-
-
+ @@ -500,23 +490,13 @@
- URL:
+ IP:
- -
-
-
- Type:
-
-
-
-
-
-
+ diff --git a/ui/scripts/cloud.core.network.js b/ui/scripts/cloud.core.network.js index 9734fcafdc5..ed640173918 100644 --- a/ui/scripts/cloud.core.network.js +++ b/ui/scripts/cloud.core.network.js @@ -248,8 +248,7 @@ function publicNetworkFirewallJsonToTemplate(jsonObj, $template) { $template.attr("id", "publicNetworkFirewall_" + jsonObj.id); $template.find("#grid_header_title").text(fromdb(jsonObj.url)); - $template.find("#id").text(fromdb(jsonObj.id)); - $template.find("#type").text(fromdb(jsonObj.type)); + $template.find("#id").text(fromdb(jsonObj.id)); $template.find("#url").text(fromdb(jsonObj.url)); var $actionLink = $template.find("#firewall_action_link"); @@ -320,8 +319,7 @@ function publicNetworkLoadBalancerJsonToTemplate(jsonObj, $template) { $template.attr("id", "publicNetworkLoadBalancer_" + jsonObj.id); $template.find("#grid_header_title").text(fromdb(jsonObj.url)); - $template.find("#id").text(fromdb(jsonObj.id)); - $template.find("#type").text(fromdb(jsonObj.type)); + $template.find("#id").text(fromdb(jsonObj.id)); $template.find("#url").text(fromdb(jsonObj.url)); var $actionLink = $template.find("#loadbalancer_action_link");