From 29a59cab445e0983cc77516156dc5a73b513fd4e Mon Sep 17 00:00:00 2001 From: Anthony Lapenna <lapenna.anthony@gmail.com> Date: Sat, 1 Oct 2016 16:55:11 +1300 Subject: [PATCH] feat(containers): change exposed port format (#243) --- app/components/containers/containers.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/containers/containers.html b/app/components/containers/containers.html index 20f7eda28..e8f681f41 100644 --- a/app/components/containers/containers.html +++ b/app/components/containers/containers.html @@ -93,7 +93,7 @@ <td ng-if="swarm && !swarm_mode">{{ container.hostIP }}</td> <td> <a ng-if="container.Ports.length > 0" ng-repeat="p in container.Ports" class="image-tag" ng-href="http://{{p.host}}:{{p.public}}" target="_blank"> - <i class="fa fa-external-link" aria-hidden="true"></i> {{ p.private }} + <i class="fa fa-external-link" aria-hidden="true"></i> {{p.public}}:{{ p.private }} </a> <span ng-if="container.Ports.length == 0" >-</span> </td>