Skip to content

Commit d3c3ca6

Browse files
pskumar448rodrigc
authored andcommitted
Build flow sections created in older Jenkins versions disappeared in Jenkins 2.x
[FIXED JENKINS-34961]
1 parent 89a9037 commit d3c3ca6

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

src/main/resources/com/cloudbees/plugins/flow/BuildFlow/configure-entries.jelly

+11-7
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,17 @@
3131
</p:config-trigger>
3232

3333
<f:section title="Flow">
34-
<f:optionalBlock field="buildNeedsWorkspace" title="${%Flow run needs a workspace}"
35-
checked="${instance.buildNeedsWorkspace}">
36-
<f:entry field="dslFile" title="${%Read DSL from file}">
37-
<j:getStatic var="permission" className="hudson.model.Hudson" field="RUN_SCRIPTS"/>
38-
<f:textbox readonly="${h.hasPermission(it,permission) ? null : 'readonly'}"/>
39-
</f:entry>
40-
</f:optionalBlock>
34+
<f:block>
35+
<table width="100%">
36+
<f:optionalBlock field="buildNeedsWorkspace" title="${%Flow run needs a workspace}"
37+
checked="${instance.buildNeedsWorkspace}">
38+
<f:entry field="dslFile" title="${%Read DSL from file}">
39+
<j:getStatic var="permission" className="hudson.model.Hudson" field="RUN_SCRIPTS"/>
40+
<f:textbox readonly="${h.hasPermission(it,permission) ? null : 'readonly'}"/>
41+
</f:entry>
42+
</f:optionalBlock>
43+
</table>
44+
</f:block>
4145
<f:entry field="dsl" title="${%Define build flow using flow DSL}">
4246
<j:getStatic var="permission" className="hudson.model.Hudson" field="RUN_SCRIPTS"/>
4347
<f:textarea class="fixed-width" readonly="${h.hasPermission(it,permission) ? null : 'readonly'}" codemirror-mode="clike" codemirror-config="mode: 'text/x-groovy', lineNumbers: true, matchBrackets: true, onBlur: function(editor){editor.save()}" checkMethod="POST" />

0 commit comments

Comments
 (0)