Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:l="/lib/layout" xmlns:st="jelly:stapler">
<f:dropdownDescriptorSelector field="providerFilter" title="${%Providers}"/>
<f:dropdownDescriptorSelector field="typeFilter" title="${%Types}"/>
<f:entry title="${%Restrictions}">
<f:entry title="${%Restrictions}" class="jenkins-!-margin-0">
<f:repeatableHeteroProperty field="restrictions" hasHeader="true"/>
</f:entry>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
<f:entry title="${%Description}" help="/plugin/credentials/help/domain/description.html">
<f:textarea field="description"/>
</f:entry>
<f:entry title="${%Specification}" help="/plugin/credentials/help/domain/specification.html">
<f:entry title="${%Specification}" help="/plugin/credentials/help/domain/specification.html"
class="jenkins-!-margin-0">
<f:hetero-list name="specifications" hasHeader="true" descriptors="${it.parent.specificationDescriptors}"
items="${instance.specifications}"/>
</f:entry>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
<f:entry title="${%Description}" help="/plugin/credentials/help/domain/description.html">
<f:textarea name="description"/>
</f:entry>
<f:entry title="${%Specification}" help="/plugin/credentials/help/domain/specification.html">
<f:entry title="${%Specification}" help="/plugin/credentials/help/domain/specification.html"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't this be handled in core? seems strange as its just consecutive entries?

class="jenkins-!-margin-0">
<f:hetero-list name="specifications" hasHeader="true" descriptors="${it.specificationDescriptors}"
items="${null}"/>
</f:entry>
Expand Down
Loading