File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
src/main/resources/org/jenkinsci/plugins/workflow/multibranch/DurabilityHintBranchProperty Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,14 @@ THE SOFTWARE.
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 =" ${%Custom Branch Speed/Durability Level}" field =" hint" >
2727 <j : set var =" defaultHint" value =" ${descriptor.defaultDurabilityHint}" />
28- <select class =" setting-input" name =" hint" >
29- <j : forEach var =" it" items =" ${descriptor.durabilityHintValues}" >
30- <option value =" ${it.name()}"
31- selected =" ${((instance != null) ? it==instance[field] : it==defaultHint) ? 'true' : null}"
32- tooltip =" ${it.tooltip}" ><j : out value =" ${it.description}" /></option >
33- </j : forEach >
34- </select >
28+ <div class =" jenkins-select" >
29+ <select class =" jenkins-select__input" name =" hint" >
30+ <j : forEach var =" it" items =" ${descriptor.durabilityHintValues}" >
31+ <option value =" ${it.name()}"
32+ selected =" ${((instance != null) ? it==instance[field] : it==defaultHint) ? 'true' : null}"
33+ tooltip =" ${it.tooltip}" ><j : out value =" ${it.description}" /></option >
34+ </j : forEach >
35+ </select >
36+ </div >
3537 </f : entry >
3638</j : jelly >
You can’t perform that action at this time.
0 commit comments