Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-27103] Require minimal width for pattern labels
  • Loading branch information
olivergondza committed May 29, 2015
1 parent 9b286a9 commit ca3971e
Showing 1 changed file with 6 additions and 6 deletions.
@@ -1,8 +1,8 @@
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<table>
<tr>
<td width="15%"><f:select field="type" /></td>
<td width="85%"><f:textbox field="pattern"/></td>
</tr>
</table>
<table style="width: 100%">
<tr>
<td style="width: 8em;"><f:select field="type" /></td>
<td><f:textbox field="pattern"/></td>
</tr>
</table>
</j:jelly>

0 comments on commit ca3971e

Please sign in to comment.