From 7be77949acd4bfd71b2db0e322e93dc6d8b0d210 Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Wed, 21 Jan 2026 11:15:13 +0100 Subject: [PATCH] Fix some id issue caused by the $bEditMode being passed to dashlet rendering --- .../Application/Dashboard/Controller/DashboardController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sources/Application/Dashboard/Controller/DashboardController.php b/sources/Application/Dashboard/Controller/DashboardController.php index 77e7187a8..172e54c73 100644 --- a/sources/Application/Dashboard/Controller/DashboardController.php +++ b/sources/Application/Dashboard/Controller/DashboardController.php @@ -54,7 +54,8 @@ class DashboardController extends Controller $aValues = $oDashlet->GetDenormalizedProperties(); } - $oDashletBlock = $oDashlet->DoRender($oPage, true /* bEditMode */, false /* bEnclosingDiv */); + // TODO 3.3 Removing bEditMode for dashlet rendering fixes id having an "_edit" issues, but is it the right solution ? + $oDashletBlock = $oDashlet->DoRender($oPage, false /* bEditMode */, false /* bEnclosingDiv */); if ($oDashletBlock instanceof iUIBlock) { // Wrap the dashlet