JSに以下のコードを追加。
Drupal.behaviors.customParentClickable = {
attach: function (context, settings) {
const parentMenuItems = document.querySelectorAll(".navbar-nav .dropdown");
parentMenuItems.forEach((menuItem) => {
menuItem.addEventListener("click", function (event) {
const targetUrl = menuItem.querySelector("a").getAttribute("href");
if (targetUrl) {
window.location.href = targetUrl;
}
});
});
},
};