Skip to content
Snippets Groups Projects
Commit 5a233019 authored by davisben's avatar davisben Committed by Sascha Eggenberger
Browse files

Issue #3327555: Gin somehow breaks Select All functionality from Upgrade Status

parent 5a8fc124
Branches 8.x-3.x
No related tags found
No related merge requests found
......@@ -43,11 +43,13 @@
.querySelector('[data-drupal-selector*="edit-header"]');
const updateSticky = (state) => {
if (state === true) {
stickyHeader.classList.add(setClass);
}
else {
stickyHeader.classList.remove(setClass);
if (stickyHeader) {
if (state === true) {
stickyHeader.classList.add(setClass);
}
else {
stickyHeader.classList.remove(setClass);
}
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment