Skip to content

Commit

Permalink
[JENKINS-69240] Version select input is out of style with other drop …
Browse files Browse the repository at this point in the history
…down select input (#6963)

Co-authored-by: Alexander Brandes <mc.cache@web.de>
  • Loading branch information
ridemountainpig and NotMyFault committed Aug 8, 2022
1 parent 0acca41 commit 2072281
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ THE SOFTWARE.
<f:textbox />
</j:when>
<j:otherwise>
<select name="_.id" disabled="${readOnlyMode ? 'true' : null}">
<div class="jenkins-select">
<select class="jenkins-select__input" name="_.id" disabled="${readOnlyMode ? 'true' : null}">
<j:forEach var="tool" items="${tools}">
<f:option value="${tool.id}" selected="${tool.id==instance.id}">${tool.name}</f:option>
</j:forEach>
</select>
</div>
</j:otherwise>
</j:choose>
</f:entry>
Expand Down

0 comments on commit 2072281

Please sign in to comment.