Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Fix Health thresholds text boxes width. #2

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/resources/util/health.jelly
Expand Up @@ -15,14 +15,14 @@
<td style="vertical-align: middle;">
<img src="${rootURL}/images/16x16/health-80plus.gif" alt="100%" title="${%description.healthy}" /> ${%threshold.100.percent}
</td>
<td>
<td width="40">
<f:textbox name="healthy" value="${instance.healthy}" />
</td>
<td width="20"/>
<td style="vertical-align: middle;">
<img src="${rootURL}/images/16x16/health-00to19.gif" alt="0%" title="${%description.unhealthy}" /> ${%threshold.0.percent}
</td>
<td>
<td width="40">
<f:textbox name="unHealthy" value="${instance.unHealthy}" />
</td>
</tr>
Expand Down