Skip to content

Commit

Permalink
Update config.jelly
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Dec 25, 2021
1 parent 08e3e1d commit bac4620
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ THE SOFTWARE.
<f:entry title="${%Description}" help="/help/parameter/description.html">
<f:textarea name="parameter.description" value="${instance.description}" codemirror-mode="${app.markupFormatter.codeMirrorMode}" codemirror-config="${app.markupFormatter.codeMirrorConfig}" previewEndpoint="/markupFormatter/previewDescription" />
</f:entry>
<f:entry name="filter" title="${%Filter}" help="/help/parameter/run-filter.html">
<select name="filter">
<f:option selected="${instance.filter=='ALL'}" value="ALL">${%All Builds}</f:option>
<f:option selected="${instance.filter=='COMPLETED'}" value="COMPLETED">${%Completed Builds Only}</f:option>
<f:option selected="${instance.filter=='SUCCESSFUL'}" value="SUCCESSFUL">${%Successful Builds Only}</f:option>
<f:option selected="${instance.filter=='STABLE'}" value="STABLE">${%Stable Builds Only}</f:option>
<f:entry title="${%Filter}" help="/help/parameter/run-filter.html">
<div class="jenkins-select">
<select name="filter" class="jenkins-select__input">
<f:option selected="${instance.filter=='ALL'}" value="ALL">${%All Builds}</f:option>
<f:option selected="${instance.filter=='COMPLETED'}" value="COMPLETED">${%Completed Builds Only}</f:option>
<f:option selected="${instance.filter=='SUCCESSFUL'}" value="SUCCESSFUL">${%Successful Builds Only}</f:option>
<f:option selected="${instance.filter=='STABLE'}" value="STABLE">${%Stable Builds Only}</f:option>
</select>
</div>
</f:entry>
</j:jelly>
</j:jelly>

0 comments on commit bac4620

Please sign in to comment.