Skip to content

Commit

Permalink
fixes #2551
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandunn committed Dec 28, 2020
1 parent 2c53193 commit 4745758
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions grails-app/views/home/systemInfo.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,28 @@
</table>
</div>

<div class="row col-md-10">
<h3>Java Info</h3>
<table class="table">
<g:each in="${javaMapInstance.sort{it.key}}" var="data">
<div class="row col-md-10">
<h3>Config Info</h3>
<table class="table">
<g:each in="${grailsApplication.config.toProperties()}" var="config">
<g:if test="${!config.key.toLowerCase().contains("password")}">
<tr>
<td>
${config.key}
</td>
<td>
${config.value}
</td>
</tr>
</g:if>
</g:each>
</table>
</div>

<div class="row col-md-10">
<h3>Java Info</h3>
<table class="table">
<g:each in="${javaMapInstance.sort{it.key}}" var="data">
<g:if test="${!data.key.toLowerCase().contains("password")}">
<tr>
<td>
Expand Down

0 comments on commit 4745758

Please sign in to comment.