From 193cd0db96d45c9bdd377a29e7ae530ed18ec0aa Mon Sep 17 00:00:00 2001 From: "Nihantra C. Patel" <141945075+Nihantra-Patel@users.noreply.github.com> Date: Mon, 26 Feb 2024 23:01:41 +0530 Subject: [PATCH] fix: sales funnel text color in light/dark theme (#40132) * fix: sales funnel text color in light/dark theme * fix: sales funnel text color in light/dark theme --- erpnext/selling/page/sales_funnel/sales_funnel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/page/sales_funnel/sales_funnel.js b/erpnext/selling/page/sales_funnel/sales_funnel.js index e3d0a55c3a0..c37c7266362 100644 --- a/erpnext/selling/page/sales_funnel/sales_funnel.js +++ b/erpnext/selling/page/sales_funnel/sales_funnel.js @@ -229,7 +229,7 @@ erpnext.SalesFunnel = class SalesFunnel { context.fill(); // draw text - context.fillStyle = "black"; + context.fillStyle = ""; context.textBaseline = "middle"; context.font = "1.1em sans-serif"; context.fillText(__(title), width + 20, y_mid);