mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 13:25:26 +02:00
fix(endpoints): hide edge endpoint url (#3949)
This commit is contained in:
parent
40f9078d80
commit
ec9055f0e6
1 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue