fixes: U4-10667 7.8 Item not published is still a hyperlink
This commit is contained in:
@@ -7,10 +7,14 @@
|
|||||||
<umb-box-content class="block-form">
|
<umb-box-content class="block-form">
|
||||||
<ul class="nav nav-stacked" style="margin-bottom: 0;">
|
<ul class="nav nav-stacked" style="margin-bottom: 0;">
|
||||||
<li ng-repeat="url in node.urls">
|
<li ng-repeat="url in node.urls">
|
||||||
<a href="{{url}}" target="_blank">
|
<a ng-if="node.published" href="{{url}}" target="_blank">
|
||||||
<i class="icon icon-window-popin"></i>
|
<i class="icon icon-window-popin"></i>
|
||||||
<span>{{url}}</span>
|
<span>{{url}}</span>
|
||||||
</a>
|
</a>
|
||||||
|
<div ng-if="!node.published">
|
||||||
|
<i class="icon icon-window-popin"></i>
|
||||||
|
<span>{{url}}</span>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</umb-box-content>
|
</umb-box-content>
|
||||||
|
|||||||
Reference in New Issue
Block a user