From f51c4e848d5521c562951cf7d2ab642f8444dfe7 Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Mon, 30 Mar 2026 21:19:06 -0400 Subject: [PATCH] feat: update action button icon from ellipsis to more-vertical and fix icon rendering scope - Change action button icon from 'ellipsis' to 'more-vertical' for better visual consistency - Update safeCreateIcons call to render all icons globally instead of scoping to button element --- frontend/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/app.js b/frontend/app.js index 98efbd7..f7e76ef 100644 --- a/frontend/app.js +++ b/frontend/app.js @@ -4749,7 +4749,7 @@ button.className = "tree-item-action-btn"; button.setAttribute("aria-label", "Afficher le menu d’actions"); button.setAttribute("title", "Actions"); - const iconEl = icon("ellipsis", 16); + const iconEl = icon("more-vertical", 16); button.appendChild(iconEl); button.addEventListener("click", (e) => { e.preventDefault(); @@ -4760,7 +4760,7 @@ itemEl.appendChild(button); // Ensure Lucide icons are rendered for the button setTimeout(() => { - safeCreateIcons(button); + safeCreateIcons(); }, 0); }