1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 05:15:25 +02:00

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

This commit is contained in:
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

View file

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