Details
-
Type:
Bug
-
Status: Resolved (View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Component/s: prioritysorter-plugin
-
Labels:
-
Environment:Jenkins ver. 1.593
Plugin ver. 3.0
-
Similar Issues:
Description
I found a bug in the jobGroupName-select tag. It added the selected attribute on each option that was not selected, instead of the one that should have been selected.
Hence we ended up with this HTML-ouput.
<tr nameref="rowSetStart44"> <td class="setting-leftspace"> </td> <td class="setting-name">Job Group</td> <td class="setting-main"> <select name="jobGroupName"> <option value="Top Priority">Top Priority</option> <option selected="true" value="Features">Features</option> <option selected="true" value="Slow and steady">Slow and steady</option> </select> </td> <td class="setting-no-help"></td> </tr>
In my case, the option Top Priority should have been choosen, instead Slow and steady was shown. When I looked at my current saved configuration for this specific job, I saw that Top Priority was saved, so it works correctly, it just shows the wrong jobGroupName.
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Status | Open [ 1 ] | In Progress [ 3 ] |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Resolved [ 5 ] |
Workflow | JNJira [ 163114 ] | JNJira + In-Review [ 197102 ] |
Pull request can be found here: https://github.com/jenkinsci/priority-sorter-plugin/pull/24