Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Nov 15, 2021
1 parent f07f81c commit e72b5fd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
2 changes: 1 addition & 1 deletion core/src/main/resources/lib/form/hetero-radio.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ THE SOFTWARE.
<j:set var="descriptor" value="${d}" />
<j:set var="instance" value="${currentDescriptor==d?currentInstance:null}" />
<st:include from="${d}" page="${d.configPage}" optional="true" />
<f:class-entry descriptor="${d}" />
</f:radioBlock>
<f:class-entry descriptor="${d}" />
</j:forEach>
</div>
<!-- TODO consider customizedFields -->
Expand Down
26 changes: 11 additions & 15 deletions core/src/main/resources/lib/form/rowSet.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,15 @@ THE SOFTWARE.
</st:attribute>
</st:documentation>

<div class="rowSet-container jenkins-form-item">
<j:choose>
<j:when test="${attrs.ref==null and attrs.name==null}">
<!-- noop -->
<d:invokeBody />
</j:when>
<j:otherwise>
<div ref="${attrs.ref}" class="row-set-start row-group-start tr" style="display:none" name="${attrs.name}"></div>
<div class="form-container tr">
<d:invokeBody />
</div>
<div class="row-set-end row-group-end tr"></div>
</j:otherwise>
</j:choose>
</div>
<j:choose>
<j:when test="${attrs.ref==null and attrs.name==null}">
<!-- noop -->
<d:invokeBody />
</j:when>
<j:otherwise>
<div ref="${attrs.ref}" class="row-set-start row-group-start tr" style="display:none" name="${attrs.name}"></div>
<d:invokeBody />
<div class="row-set-end row-group-end tr"></div>
</j:otherwise>
</j:choose>
</j:jelly>

0 comments on commit e72b5fd

Please sign in to comment.