mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-28 09:24:45 +00:00
Merge pull request #44566 from frappe/mergify/bp/version-15-hotfix/pr-44558
fix: add string for translation in delayed_tasks_summary.py (backport #44558)
This commit is contained in:
@@ -77,7 +77,7 @@ def get_chart_data(data):
|
|||||||
charts = {
|
charts = {
|
||||||
"data": {
|
"data": {
|
||||||
"labels": [_("On Track"), _("Delayed")],
|
"labels": [_("On Track"), _("Delayed")],
|
||||||
"datasets": [{"name": "Delayed", "values": [on_track, delay]}],
|
"datasets": [{"name": _("Delayed"), "values": [on_track, delay]}],
|
||||||
},
|
},
|
||||||
"type": "percentage",
|
"type": "percentage",
|
||||||
"colors": ["#84D5BA", "#CB4B5F"],
|
"colors": ["#84D5BA", "#CB4B5F"],
|
||||||
|
|||||||
Reference in New Issue
Block a user