From 8086065d388c6a40ad2ee03d2aaa33cde228b18e Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Wed, 28 Jan 2026 17:48:03 -0800 Subject: [PATCH] Fix MenuID key case: Lucee 7 preserves case, not MENUID Co-Authored-By: Claude Opus 4.5 --- portal/menu-builder.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal/menu-builder.html b/portal/menu-builder.html index 775fbd9..5001758 100644 --- a/portal/menu-builder.html +++ b/portal/menu-builder.html @@ -3507,7 +3507,7 @@ // New menu — store context and redirect to wizard to populate it sessionStorage.setItem('payfrit_wizard_menu', JSON.stringify({ businessId: this.config.businessId, - menuId: data.MENUID, + menuId: data.MenuID, menuName: menuName })); window.location.href = `${BASE_PATH}/portal/setup-wizard.html`;