Skip to content

Commit 9b9e91f

Browse files
Update inconsistent style
1 parent 2f4929d commit 9b9e91f

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

src/main/resources/jenkins/plugins/nodejs/NodeJSBuildWrapper/config.jelly

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ THE SOFTWARE.
2424
<?jelly escape-by-default='true'?>
2525
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
2626
<f:entry title="${%nodeJSInstallationName.title}" description="${%nodeJSInstallationName.description}">
27-
<select class="setting-input" name="_.nodeJSInstallationName">
28-
<j:forEach var="inst" items="${descriptor.installations}">
29-
<f:option selected="${inst.name==instance.nodeJSInstallationName}">${inst.name}</f:option>
30-
</j:forEach>
31-
</select>
27+
<div class="jenkins-select">
28+
<select class="jenkins-select__input" name="_.nodeJSInstallationName">
29+
<j:forEach var="inst" items="${descriptor.installations}">
30+
<f:option selected="${inst.name==instance.nodeJSInstallationName}">${inst.name}</f:option>
31+
</j:forEach>
32+
</select>
33+
</div>
3234
</f:entry>
3335

3436
<f:entry title="${%configId.title}">

src/main/resources/jenkins/plugins/nodejs/NodeJSCommandInterpreter/config.jelly

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ THE SOFTWARE.
2424
<?jelly escape-by-default='true'?>
2525
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
2626
<f:entry title="${%nodeJSInstallationName.title}" description="${%nodeJSInstallationName.description}">
27-
<select class="setting-input" name="_.nodeJSInstallationName">
28-
<f:option value="">${%nodeJSInstallationName.emptyValue}</f:option>
29-
<j:forEach var="inst" items="${descriptor.installations}">
30-
<f:option selected="${inst.name==instance.nodeJSInstallationName}">${inst.name}</f:option>
31-
</j:forEach>
32-
</select>
27+
<div class="jenkins-select">
28+
<select class="jenkins-select__input" name="_.nodeJSInstallationName">
29+
<f:option value="">${%nodeJSInstallationName.emptyValue}</f:option>
30+
<j:forEach var="inst" items="${descriptor.installations}">
31+
<f:option selected="${inst.name==instance.nodeJSInstallationName}">${inst.name}</f:option>
32+
</j:forEach>
33+
</select>
34+
</div>
3335
</f:entry>
3436

3537
<f:entry title="${%command.title}" description="See &lt;a href='${rootURL}/env-vars.html' target=_new>the list of available environment variables&lt;/a> accessible by process.env.ENV_VARIABLE.">

0 commit comments

Comments
 (0)