fix copy paste issue

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1225243 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2011-12-28 17:32:34 +00:00
parent fd7af26609
commit 4a2ddd6cf7
1 changed files with 3 additions and 3 deletions

View File

@ -62,14 +62,14 @@
<div class="page-header">
<h3>${$.i18n.prop('role.parents')}</h3>
</div>
{{if childRoleNames}}
{{if parentRoleNames}}
<ul>
{{if $.isArray(childRoleNames)}}
{{if $.isArray(parentRoleNames)}}
{{each parentRoleNames}}
<li>${$value}</li>
{{/each}}
{{else}}
<li>${childRoleNames}</li>
<li>${parentRoleNames}</li>
{{/if}}
</ul>
{{/if}}