Skip to content

Commit 8a9e67a

Browse files
committed
Use p.enabled instead of p.active for sorting consistency
The sorting data attribute should use p.enabled to match the checkbox's checked attribute, ensuring sort order reflects the configured state rather than the runtime state.
1 parent 6845283 commit 8a9e67a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/resources/hudson/PluginManager/installed.jelly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ THE SOFTWARE.
186186
</td>
187187
</j:if>
188188
<j:set var="state" value="${p.enabled?'true':null}"/>
189-
<td class="jenkins-table__cell--tight enable" data="${p.active?'1':'0'}">
189+
<td class="jenkins-table__cell--tight enable" data="${p.enabled?'1':'0'}">
190190
<div class="jenkins-table__cell__button-wrapper">
191191
<span class="jenkins-toggle-switch">
192192
<input type="checkbox" checked="${state}"

0 commit comments

Comments
 (0)