Revert "fix(swarm): display node links when authentication is disabled #1320" (#1326)

This reverts commit 089d2cf0fe.
pull/1186/merge
Anthony Lapenna 2017-10-25 08:42:19 +02:00 committed by GitHub
parent 089d2cf0fe
commit 514da445a4
1 changed files with 2 additions and 2 deletions

View File

@ -224,8 +224,8 @@
<tbody>
<tr dir-paginate="node in (state.filteredNodes = (nodes | filter:state.filter | orderBy:sortType:sortReverse | itemsPerPage: state.pagination_count))">
<td>
<a ui-sref="node({id: node.Id})" ng-if="!applicationState.application.authentication || isAdmin">{{ node.Hostname }}</a>
<span ng-if="applicationState.application.authentication && !isAdmin">{{ node.Hostname }}</span>
<a ui-sref="node({id: node.Id})" ng-if="isAdmin">{{ node.Hostname }}</a>
<span ng-if="!isAdmin">{{ node.Hostname }}</span>
</td>
<td>{{ node.Role }}</td>
<td>{{ node.CPUs / 1000000000 }}</td>