only show other roles if present on mc apps

This commit is contained in:
Westly Wright 2019-03-04 16:42:50 -07:00
parent d5806915bf
commit 3661255133
No known key found for this signature in database
GPG Key ID: 4FAB3D8673DC54A3
1 changed files with 16 additions and 14 deletions

View File

@ -23,17 +23,19 @@
</label> </label>
</div> </div>
</div> </div>
<div class="col span-6"> {{#if otherRoles.length}}
<label class="acc-label"> <div class="col span-6">
{{t "newMultiClusterApp.roles.additionalRoles"}} <label class="acc-label">
</label> {{t "newMultiClusterApp.roles.additionalRoles"}}
<table class="table fixed no-lines mt-5 mb-10"> </label>
<tbody> <table class="table fixed no-lines mt-5 mb-10">
{{#each otherRoles as |role|}} <tbody>
<tr> {{#each otherRoles as |role|}}
<td>{{role}}</td> <tr>
</tr> <td>{{role}}</td>
{{/each}} </tr>
</tbody> {{/each}}
</table> </tbody>
</div> </table>
</div>
{{/if}}