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
This commit is contained in:
Nihantra C. Patel
2024-02-26 23:01:41 +05:30
committed by GitHub
parent ac3c23922a
commit 193cd0db96

View File

@@ -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);