Skip to content

Commit

Permalink
[JENKINS-63276] Make empty installed plugins text readable (#4892)
Browse files Browse the repository at this point in the history
  • Loading branch information
fqueiruga committed Aug 3, 2020
1 parent 87f9404 commit 97c7b68
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions core/src/main/resources/hudson/PluginManager/installed.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,12 @@ THE SOFTWARE.
<table id="plugins" class="pane bigtable sortable stripped-odd">
<j:choose>
<j:when test="${empty(app.pluginManager.plugins) and empty(app.pluginManager.failedPlugins)}">
<tr><td>
${%No plugins installed.}
</td></tr>
<tr>
<th>${%Installed plugins}</th>
</tr>
<tr>
<td align="center">${%No plugins installed.}</td>
</tr>
</j:when>
<j:otherwise>
<tr>
Expand Down

0 comments on commit 97c7b68

Please sign in to comment.