fix(rbac): In the application details view, for a non admin user there is a link to the node details view (#118)

This commit is contained in:
Maxime Bajeux
2020-11-27 02:34:16 +01:00
committed by GitHub
parent f717cf3eda
commit 5cdcbbc604
4 changed files with 5 additions and 1 deletions
@@ -115,9 +115,10 @@
>
<td>
<span ng-if="item.Node">
<a ui-sref="kubernetes.cluster.node({ name: item.Node })">
<a ng-if="$ctrl.accessNode" ui-sref="kubernetes.cluster.node({ name: item.Node })">
{{ item.Node }}
</a>
<span ng-if="!$ctrl.accessNode">{{ item.Node }}</span>
</span>
<span ng-if="!item.Node">-</span>
</td>