Skip to content

Commit

Permalink
Merge pull request #28 from Kyrremann/JENKINS-28280_The_selected-attr…
Browse files Browse the repository at this point in the history
…ibut_was_inverted

[JENKINS-28280] The selected value was inverted
  • Loading branch information
emsa23 committed May 18, 2015
2 parents 5d7cc0e + 3ff510b commit a1e32f9
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -11,8 +11,8 @@
<f:entry title="Job Group" field="jobGroupName">
<select name="jobGroupName">
<j:forEach var="jobGroup" items="${descriptor.getJobGroups()}">
<f:option value="${jobGroup.value}" selected="${jobGroup.value != instance.jobGroupName}">${jobGroup.name}</f:option>
</j:forEach>
<f:option value="${jobGroup.value}" selected="${jobGroup.value == instance.jobGroupName}">${jobGroup.name}</f:option>
</j:forEach>
</select>
</f:entry>
</f:optionalBlock>
Expand Down

0 comments on commit a1e32f9

Please sign in to comment.