From 87fdf8f6d77170ef0f414a1fa15d29bed08c1af2 Mon Sep 17 00:00:00 2001 From: yh-noh Date: Wed, 29 Apr 2026 08:32:08 +0900 Subject: [PATCH 1/2] docs: replace broken image link with text description in README --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index f6ca6068..a52d6307 100644 --- a/README.md +++ b/README.md @@ -143,9 +143,7 @@ http://:3001/auth/login ``` -MC-WEB-CONSOLE has been successfully deployed if the screen below is visible during the access to the web of the endpoint above. Login users can log in as users created by MC-IAM-MANAGER. - -![image.png](https://private-user-images.githubusercontent.com/78469943/584510105-4f707fac-9ee6-4f68-91a1-8d6e51815b60.png) +MC-WEB-CONSOLE has been successfully deployed if the login screen is displayed when accessing the endpoint above. Login users can log in as users created by MC-IAM-MANAGER. --- From 962fb0f38e39bbbb2c0bcc8e350c9ff64d305f7d Mon Sep 17 00:00:00 2001 From: dogfootman Date: Thu, 30 Apr 2026 12:56:21 +0900 Subject: [PATCH 2/2] fix(WEB-BUG-011): fix sidebar Organizations menu not expanding Two bugs prevented the dropdown menu from opening: 1. `menu.menus === null` condition in generateMenuHTML() was always false because convertToMenuTree() initializes every node with `menus: []`. Changed to `!menu.menus || menu.menus.length === 0` so leaf items render as plain nav links, not dropdown toggles. 2. `data-bs-toggle="dropdown"` on the dropdown-toggle div caused Bootstrap's built-in handler and the custom click handler to both toggle the `show` class, netting to no change (open then close). Removed the Bootstrap attribute; the custom handler already manages show/hide manually via nextElementSibling. --- front/assets/js/partials/layout/sidebar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/assets/js/partials/layout/sidebar.js b/front/assets/js/partials/layout/sidebar.js index 2b7dd2a2..5034d156 100644 --- a/front/assets/js/partials/layout/sidebar.js +++ b/front/assets/js/partials/layout/sidebar.js @@ -43,7 +43,7 @@ function generateMenuHTML(menus) { html += ` ` if (category.menus && category.menus.length > 0) { category.menus.forEach(menu => { - if (menu.menus === null){ + if (!menu.menus || menu.menus.length === 0){ html +=`` }else { html += `