Skip to content

Commit

Permalink
Fix issue on contact page in admin
Browse files Browse the repository at this point in the history
  • Loading branch information
matsbov committed Aug 31, 2023
1 parent f90ab0d commit 846ddc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion grails-app/views/contact/show.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@
<td style="text-align: left;" class="value">
<ul>
<g:each in="${providerGroupService.getContactsFor(contactInstance)}" var="entity">
<li><g:link controller="${cl.controller(type: entity?.entityType())}" action="show" id="${entity?.uid}">${entity?.name}</g:link></li>
<g:if test="${entity}">
<li><g:link controller="${cl.controller(type: entity?.entityType())}" action="show" id="${entity?.uid}">${entity?.name}</g:link></li>
</g:if>
</g:each>
</ul>
</td>
Expand Down

0 comments on commit 846ddc5

Please sign in to comment.