Skip to content

Commit

Permalink
Fix checkbox label not appearing next to checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Oct 26, 2021
1 parent 70782b1 commit 5d6476c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion war/src/main/webapp/scripts/hudson-behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -1491,7 +1491,7 @@ function rowvgStartEachRow(recursive,f) {
function findSettingName(formGroup) {
for (var i=0; i<formGroup.childNodes.length; i++) {
var child = formGroup.childNodes[i];
if (child.classList.contains('setting-name')) return child;
if (child.classList.contains('jenkins-form-label')) return child;
}
}

Expand Down

0 comments on commit 5d6476c

Please sign in to comment.