From 50b60cb6efa45a1ab925d3b68a7eb79e1eab9d9e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 11 Nov 2025 17:26:06 +0000 Subject: [PATCH 1/2] Initial plan From 2f782d44ce89ddb50faf95a16127b4be35578f00 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 11 Nov 2025 17:34:18 +0000 Subject: [PATCH 2/2] Fix drag and drop for menu items into dropdown bodies Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com> --- .../navigation-menu-page.component.html | 3 ++- .../navigation-menu-page.component.ts | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/eform-client/src/app/modules/advanced/modules/navigation-menu/components/navigation-menu-page/navigation-menu-page.component.html b/eform-client/src/app/modules/advanced/modules/navigation-menu/components/navigation-menu-page/navigation-menu-page.component.html index f449b230d9..54d698ef76 100644 --- a/eform-client/src/app/modules/advanced/modules/navigation-menu/components/navigation-menu-page/navigation-menu-page.component.html +++ b/eform-client/src/app/modules/advanced/modules/navigation-menu/components/navigation-menu-page/navigation-menu-page.component.html @@ -33,7 +33,7 @@ class="dragula-template" cdkDropList [cdkDropListData]="menuTemplate.items" - [cdkDropListConnectedTo]="['actualMenuList']" + [cdkDropListConnectedTo]="['actualMenuList'].concat(connectedDropdownIds)" id="mainMenu" > item.type === NavigationMenuItemTypeEnum.Dropdown ? this.getDropdownId(index) : null) + .filter(id => id !== null) as string[]; + } + constructor() { }