KEYCLOAK-12315 Fixed rendering resources template without baseUri.
This commit is contained in:
parent
f9fa5b551d
commit
118b413152
1 changed files with 5 additions and 1 deletions
|
@ -203,7 +203,11 @@
|
|||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="${resource.resourceServer.baseUri}">${resource.resourceServer.name}</a>
|
||||
<#if resource.resourceServer.baseUri??>
|
||||
<a href="${resource.resourceServer.baseUri}">${resource.resourceServer.name}</a>
|
||||
<#else>
|
||||
${resource.resourceServer.name}
|
||||
</#if>
|
||||
</td>
|
||||
<td>
|
||||
<#if resource.shares?size != 0>
|
||||
|
|
Loading…
Reference in a new issue