From 08726e89bdb90cb15311ec5e603930a37f671258 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 22:35:15 +0000 Subject: [PATCH 1/2] Initial plan From ddee7244bc76ab8fc1a14e88578169b7badb82e3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 22:39:44 +0000 Subject: [PATCH 2/2] Fix: Remove single-to-double quote replacement in dashboard syncGraphs function Co-authored-by: deniszh <1227222+deniszh@users.noreply.github.com> --- webapp/content/js/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/content/js/dashboard.js b/webapp/content/js/dashboard.js index 0d4fa0c18..a6f3d9e62 100644 --- a/webapp/content/js/dashboard.js +++ b/webapp/content/js/dashboard.js @@ -1875,7 +1875,7 @@ function graphClicked(graphView, graphIndex, element, evt) { function syncGraphs(thisStore, record, operation) { var targets = []; - thisStore.each(function (rec) { targets.push(rec.data.target.replace(/'/g, '"')); }); + thisStore.each(function (rec) { targets.push(rec.data.target); }); selectedRecord.data.params.target = targets; selectedRecord.data.target = Ext.urlEncode({target: targets}); refreshGraphs();