Skip to content

Commit 7438172

Browse files
authored
Backporting for LTS 2.516.3 (#11019)
2 parents 4b339e0 + b31f7e8 commit 7438172

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ THE SOFTWARE.
9797
<bridge-method-injector.version>1.31</bridge-method-injector.version>
9898
<spotless.check.skip>false</spotless.check.skip>
9999
<!-- Make sure to keep the jetty-ee9-maven-plugin version in war/pom.xml in sync with the Jetty release in Winstone: -->
100-
<winstone.version>8.10</winstone.version>
100+
<winstone.version>8.13</winstone.version>
101101
<node.version>22.16.0</node.version>
102102
</properties>
103103

src/main/js/components/dropdowns/templates.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ function dropdown() {
5757
referenceParent.classList.add("model-link--open");
5858
}
5959
},
60-
onHide: (instance) => {
61-
const referenceParent = instance.reference.parentNode;
62-
referenceParent.classList.remove("model-link--open");
63-
},
6460
};
6561
}
6662

src/main/js/components/dropdowns/utils.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ function generateDropdown(element, callback, immediate, options = {}) {
5252
}
5353
},
5454
onHide(instance) {
55+
const referenceParent = instance.reference.parentNode;
56+
referenceParent.classList.remove("model-link--open");
5557
if (
5658
instance.props.trigger === "mouseenter" &&
5759
!instance.clickToHide

src/main/scss/components/_page-header.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
position: sticky;
99
top: 0;
10-
z-index: 20;
10+
z-index: 999;
1111
display: flex;
1212
align-items: center;
1313
gap: var(--section-padding);

war/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ THE SOFTWARE.
653653
contains a version of Jetty that is older than this, trigger Dependabot in jenkinsci/winstone and release the
654654
result before proceeding with the update here.
655655
-->
656-
<version>12.0.22</version>
656+
<version>12.0.25</version>
657657
<configuration>
658658
<!--
659659
Reload webapp when you hit ENTER. (See JETTY-282 for more)

0 commit comments

Comments
 (0)