Skip to content

Commit

Permalink
Merge pull request #24 from Kyrremann/master
Browse files Browse the repository at this point in the history
[JENKINS-28280] The selected-attribut was inverted
  • Loading branch information
emsa23 committed May 10, 2015
2 parents 766301d + 8b82de0 commit cc14f2e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -11,7 +11,7 @@
<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>
<f:option value="${jobGroup.value}" selected="${jobGroup.value == instance.jobGroupName}">${jobGroup.name}</f:option>
</j:forEach>
</select>
</f:entry>
Expand Down

0 comments on commit cc14f2e

Please sign in to comment.