fix(endpoints): hide edge endpoint url (#3949)

pull/3955/head
Chaim Lev-Ari 2020-06-23 08:06:53 +03:00 committed by GitHub
parent 40f9078d80
commit ec9055f0e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -80,7 +80,10 @@
{{ item.Type | endpointtypename }}
</span>
</td>
<td>{{ item.URL | stripprotocol }}</td>
<td>
<span ng-if="item.Type !== 4">{{ item.URL | stripprotocol }}</span>
<span ng-if="item.Type === 4">-</span>
</td>
<td>{{ item.GroupName }}</td>
<td>
<a ui-sref="portainer.endpoints.endpoint.access({id: item.Id})"> <i class="fa fa-users" aria-hidden="true"></i> Manage access </a>