feat(containers): change exposed port format (#243)

pull/244/head
Anthony Lapenna 2016-10-01 16:55:11 +13:00 committed by GitHub
parent be184c11a6
commit 29a59cab44
1 changed files with 1 additions and 1 deletions

View File

@ -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>